OSDN Git Service

Add composite-type attributes to information_schema.element_types view
[pg-rex/syncrep.git] / contrib / btree_gin / Makefile
1 # contrib/btree_gin/Makefile
2
3 MODULE_big = btree_gin
4 OBJS = btree_gin.o
5
6 EXTENSION = btree_gin
7 DATA = btree_gin--1.0.sql btree_gin--unpackaged--1.0.sql
8
9 REGRESS = install_btree_gin int2 int4 int8 float4 float8 money oid \
10         timestamp timestamptz time timetz date interval \
11         macaddr inet cidr text varchar char bytea bit varbit \
12         numeric
13
14 ifdef USE_PGXS
15 PG_CONFIG = pg_config
16 PGXS := $(shell $(PG_CONFIG) --pgxs)
17 include $(PGXS)
18 else
19 subdir = contrib/btree_gin
20 top_builddir = ../..
21 include $(top_builddir)/src/Makefile.global
22 include $(top_srcdir)/contrib/contrib-global.mk
23 endif