Update information_schema definition for not-null constraints
[pgsql.git] / contrib / spi / Makefile
blobc9c34ff38895bff3b253c38f92a0e7873a7f4755
1 # contrib/spi/Makefile
3 MODULES = autoinc insert_username moddatetime refint
5 EXTENSION = autoinc insert_username moddatetime refint
7 DATA = autoinc--1.0.sql \
8 insert_username--1.0.sql \
9 moddatetime--1.0.sql \
10 refint--1.0.sql
11 PGFILEDESC = "spi - examples of using SPI and triggers"
13 DOCS = $(addsuffix .example, $(MODULES))
15 # this is needed for the regression tests;
16 # comment out if you want a quieter refint package for other uses
17 PG_CPPFLAGS = -DREFINT_VERBOSE
19 ifdef USE_PGXS
20 PG_CONFIG = pg_config
21 PGXS := $(shell $(PG_CONFIG) --pgxs)
22 include $(PGXS)
23 else
24 subdir = contrib/spi
25 top_builddir = ../..
26 include $(top_builddir)/src/Makefile.global
27 include $(top_srcdir)/contrib/contrib-global.mk
28 endif