blob: 70f24e846da1f82d1fc75a273351de1574038ff2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# 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 \
partition-removal-1
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
|