2010-09-20 16:08:53 -04:00
|
|
|
# contrib/btree_gin/Makefile
|
2009-03-25 19:20:01 -04:00
|
|
|
|
|
|
|
|
MODULE_big = btree_gin
|
2019-11-05 17:41:07 -05:00
|
|
|
OBJS = \
|
|
|
|
|
$(WIN32RES) \
|
|
|
|
|
btree_gin.o
|
2009-03-25 19:20:01 -04:00
|
|
|
|
2011-02-13 20:06:41 -05:00
|
|
|
EXTENSION = btree_gin
|
2017-03-21 11:04:17 -04:00
|
|
|
DATA = btree_gin--1.0.sql btree_gin--1.0--1.1.sql btree_gin--1.1--1.2.sql \
|
2020-02-19 16:59:14 -05:00
|
|
|
btree_gin--1.2--1.3.sql
|
2014-07-14 14:07:52 -04:00
|
|
|
PGFILEDESC = "btree_gin - B-tree equivalent GIN operator classes"
|
2011-02-13 20:06:41 -05:00
|
|
|
|
2009-03-25 19:20:01 -04:00
|
|
|
REGRESS = install_btree_gin int2 int4 int8 float4 float8 money oid \
|
|
|
|
|
timestamp timestamptz time timetz date interval \
|
2017-03-15 11:16:25 -04:00
|
|
|
macaddr macaddr8 inet cidr text varchar char bytea bit varbit \
|
2018-04-05 11:19:10 -04:00
|
|
|
numeric enum uuid name bool bpchar
|
2009-03-25 19:20:01 -04:00
|
|
|
|
|
|
|
|
ifdef USE_PGXS
|
|
|
|
|
PG_CONFIG = pg_config
|
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
|
|
|
include $(PGXS)
|
|
|
|
|
else
|
|
|
|
|
subdir = contrib/btree_gin
|
|
|
|
|
top_builddir = ../..
|
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
|
|
|
endif
|