aboutsummaryrefslogtreecommitdiff
path: root/src/test/modules/delay_execution/Makefile
blob: f270aebf3a55d3d04569bce87ad681f5849f0268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# src/test/modules/delay_execution/Makefile

PGFILEDESC = "delay_execution - allow delay between parsing and execution"

MODULE_big = delay_execution
OBJS = \
	$(WIN32RES) \
	delay_execution.o

ISOLATION = partition-addition

ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = src/test/modules/delay_execution
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif