mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-14 02:17:02 +08:00
19 lines
329 B
Makefile
19 lines
329 B
Makefile
#
|
|
# Makefile for example programs
|
|
#
|
|
|
|
subdir = src/test/examples
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS)
|
|
override LDLIBS := $(libpq_pgport) $(LDLIBS)
|
|
|
|
|
|
PROGS = testlibpq testlibpq2 testlibpq3 testlibpq4 testlo
|
|
|
|
all: $(PROGS)
|
|
|
|
clean:
|
|
rm -f $(PROGS)
|