]> granicus.if.org Git - postgresql/blob - src/test/modules/test_extensions/Makefile
Add CASCADE support for CREATE EXTENSION.
[postgresql] / src / test / modules / test_extensions / Makefile
1 # src/test/modules/test_extensions/Makefile
2
3 MODULE = test_extensions
4 PGFILEDESC = "test_extensions - regression testing for EXTENSION support"
5
6 EXTENSION = test_ext1 test_ext2 test_ext3 test_ext4 test_ext5 \
7                         test_ext_cyclic1 test_ext_cyclic2
8 DATA = test_ext1--1.0.sql test_ext2--1.0.sql test_ext3--1.0.sql \
9            test_ext4--1.0.sql test_ext5--1.0.sql test_ext_cyclic1--1.0.sql \
10            test_ext_cyclic2--1.0.sql
11
12 REGRESS = test_extensions
13
14 ifdef USE_PGXS
15 PG_CONFIG = pg_config
16 PGXS := $(shell $(PG_CONFIG) --pgxs)
17 include $(PGXS)
18 else
19 subdir = src/test/modules/test_extensions
20 top_builddir = ../../../..
21 include $(top_builddir)/src/Makefile.global
22 include $(top_srcdir)/contrib/contrib-global.mk
23 endif