head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	99.10.11.18.03.04;	author momjian;	state dead;
branches;
next	1.1;

1.1
date	99.10.11.17.47.02;	author momjian;	state Exp;
branches;
next	;


desc
@@


1.2
log
@pgeasy update.
@
text
@#-------------------------------------------------------------------------
#
# Makefile
#    Makefile for pgeasy examples
#
# IDENTIFICATION
#    $Header: /usr/local/cvsroot/pgsql/src/interfaces/pgeasy/examples/Makefile,v 1.1 1999/10/11 17:47:02 momjian Exp $
#
#-------------------------------------------------------------------------

TARGET = pginsert pgwordcount pgnulltest
LDFLAGS = -lpgeasy

all : $(TARGET)

pginsert:
	gcc -o $@@ $(CFLAGS) $@@.c $(PGEASY) $(LDFLAGS)

pgwordcount:
	gcc -o $@@ $(CFLAGS) $@@.c $(PGEASY) $(LDFLAGS)

pgnulltest:
	gcc -o $@@ $(CFLAGS) $@@.c $(PGEASY) $(LDFLAGS)

clean:
	rm -f *.o $(TARGET) log core

@


1.1
log
@Add pginterface into main tree, called pgeasy.
@
text
@d7 1
a7 1
#    $Header: /usr/local/cvsroot/pgsql/src/interfaces/libpq/Makefile.in,v 1.47 1999/08/31 01:37:36 tgl Exp $
@

