29 lines
565 B
Makefile
29 lines
565 B
Makefile
#
|
|
# Makefile for example programs
|
|
#
|
|
|
|
subdir = src/test/examples
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
ifeq ($(PORTNAME), win32)
|
|
LDLIBS += -lws2_32
|
|
endif
|
|
|
|
override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS)
|
|
override LDLIBS := $(libpq_pgport) $(LDLIBS)
|
|
|
|
ifneq "$(MAKECMDGOALS)" "clean"
|
|
ifneq "$(MAKECMDGOALS)" "distclean"
|
|
ifneq "$(shell which g++ |grep hutaf_llt |wc -l)" "1"
|
|
-include $(DEPEND)
|
|
endif
|
|
endif
|
|
endif
|
|
PROGS = testlibpq testlibpq2 testlibpq3 testlibpq4 testlo
|
|
|
|
all: $(PROGS)
|
|
|
|
clean:
|
|
rm -f $(PROGS) *.depend
|