Makefile 372 Bytes
Newer Older
1 2 3 4
#
# Makefile for example programs
#

5 6 7
subdir = src/test/examples
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
8

9
override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS)
10
LIBS += $(libpq)
11 12


13
# PROGS= testlibpq0 testlibpq1 testlibpq2 testlibpq3 testlibpq4 testlo
14
PROGS = testlibpq testlibpq2 testlibpq3 testlibpq4 testlo
15

16
all: $(PROGS)
17

18 19
clean: 
	rm -f $(PROGS)