Repair ALTER EXTENSION ... SET SCHEMA.
[pgsql.git] / src / test / modules / test_slru / Makefile
blob936886753b7e43fc66216ce1318d6cd403047e37
1 # src/test/modules/test_slru/Makefile
3 MODULE_big = test_slru
4 OBJS = \
5 $(WIN32RES) \
6 test_slru.o
7 PGFILEDESC = "test_slru - test module for SLRUs"
9 EXTENSION = test_slru
10 DATA = test_slru--1.0.sql
12 REGRESS_OPTS = --temp-config $(top_srcdir)/src/test/modules/test_slru/test_slru.conf
13 REGRESS = test_slru
14 # Disabled because these tests require "shared_preload_libraries=test_slru",
15 # which typical installcheck users do not have (e.g. buildfarm clients).
16 NO_INSTALLCHECK = 1
18 ifdef USE_PGXS
19 PG_CONFIG = pg_config
20 PGXS := $(shell $(PG_CONFIG) --pgxs)
21 include $(PGXS)
22 else
23 subdir = src/test/modules/test_slru
24 top_builddir = ../../../..
25 include $(top_builddir)/src/Makefile.global
26 include $(top_srcdir)/contrib/contrib-global.mk
27 endif