mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-12 09:27:04 +08:00
20 lines
372 B
Makefile
20 lines
372 B
Makefile
#
|
|
# Makefile for example programs
|
|
#
|
|
|
|
subdir = src/test/examples
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS)
|
|
LIBS += $(libpq)
|
|
|
|
|
|
# PROGS= testlibpq0 testlibpq1 testlibpq2 testlibpq3 testlibpq4 testlo
|
|
PROGS = testlibpq testlibpq2 testlibpq3 testlibpq4 testlo
|
|
|
|
all: $(PROGS)
|
|
|
|
clean:
|
|
rm -f $(PROGS)
|