blob: 786db4cbae45297d4d8b373e854b1fba36e798ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# src/test/modules/test_escape/Makefile
PGFILEDESC = "test escape program"
PGAPPICON = win32
PROGRAM = test_escape
OBJS = $(WIN32RES) test_escape.o
PG_CPPFLAGS = -I$(libpq_srcdir)
PG_LIBS_INTERNAL += -L$(top_builddir)/src/fe_utils -lpgfeutils $(libpq_pgport)
NO_INSTALL = 1
TAP_TESTS = 1
ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = src/test/modules/test_escape
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
test_escape$(X): | submake-libpgfeutils
check: test_escape$(X)
|