blob: 7a6e0f6676294d147881763ce6783c74debb5267 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# src/test/modules/xid_wraparound/Makefile
MODULE_big = xid_wraparound
OBJS = \
$(WIN32RES) \
xid_wraparound.o
PGFILEDESC = "xid_wraparound - tests for XID wraparound"
EXTENSION = xid_wraparound
DATA = xid_wraparound--1.0.sql
TAP_TESTS = 1
ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = src/test/modules/xid_wraparound
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
|