summaryrefslogtreecommitdiffstats
path: root/src/test/modules/test_oat_hooks/Makefile
blob: 2b5d2687f8d2c5220fed900e013edab262c3f6d3 (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
# src/test/modules/test_oat_hooks/Makefile

MODULE_big = test_oat_hooks
OBJS = \
	$(WIN32RES) \
	test_oat_hooks.o
PGFILEDESC = "test_oat_hooks - example use of object access hooks"

REGRESS = test_oat_hooks

# disable installcheck for now
NO_INSTALLCHECK = 1
# and also for now force NO_LOCALE and UTF8
ENCODING = UTF8
NO_LOCALE = 1

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