blob: a7731b7fa18cc21cfbbd8f87270339e74d241a8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# src/test/modules/gin/Makefile
EXTRA_INSTALL = src/test/modules/injection_points
REGRESS = gin_incomplete_splits
ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = src/test/modules/gin
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
|