diff options
Diffstat (limited to 'src/interfaces/libpgeasy/examples/Makefile')
-rw-r--r-- | src/interfaces/libpgeasy/examples/Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/interfaces/libpgeasy/examples/Makefile b/src/interfaces/libpgeasy/examples/Makefile index 1885bb425fb..af8dc0c32a7 100644 --- a/src/interfaces/libpgeasy/examples/Makefile +++ b/src/interfaces/libpgeasy/examples/Makefile @@ -4,23 +4,17 @@ # Makefile for pgeasy examples # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpgeasy/examples/Attic/Makefile,v 1.2 2000/05/18 14:24:37 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpgeasy/examples/Attic/Makefile,v 1.3 2002/03/04 18:50:21 momjian Exp $ # #------------------------------------------------------------------------- CFLAGS=-I/usr/local/pgsql/include -TARGET = pginsert pgwordcount pgnulltest +TARGET = pginsert pgwordcount pgnulltest pgmultiresult LDFLAGS = -L/usr/local/pgsql/lib -lpgeasy all : $(TARGET) -pginsert: - gcc -o $@ $(CFLAGS) $@.c $(PGEASY) $(LDFLAGS) - -pgwordcount: - gcc -o $@ $(CFLAGS) $@.c $(PGEASY) $(LDFLAGS) - -pgnulltest: +%: %.c gcc -o $@ $(CFLAGS) $@.c $(PGEASY) $(LDFLAGS) clean: |