2010-09-20 22:08:53 +02:00
|
|
|
# contrib/btree_gist/Makefile
|
2001-09-06 10:49:30 +00:00
|
|
|
|
2011-03-03 01:43:38 -05:00
|
|
|
MODULE_big = btree_gist
|
2001-08-22 18:27:54 +00:00
|
|
|
|
2019-11-05 14:41:07 -08:00
|
|
|
OBJS = \
|
|
|
|
$(WIN32RES) \
|
|
|
|
btree_bit.o \
|
|
|
|
btree_bytea.o \
|
|
|
|
btree_cash.o \
|
|
|
|
btree_date.o \
|
|
|
|
btree_enum.o \
|
|
|
|
btree_float4.o \
|
|
|
|
btree_float8.o \
|
|
|
|
btree_gist.o \
|
|
|
|
btree_inet.o \
|
|
|
|
btree_int2.o \
|
|
|
|
btree_int4.o \
|
|
|
|
btree_int8.o \
|
|
|
|
btree_interval.o \
|
|
|
|
btree_macaddr.o \
|
|
|
|
btree_macaddr8.o \
|
|
|
|
btree_numeric.o \
|
|
|
|
btree_oid.o \
|
|
|
|
btree_text.o \
|
|
|
|
btree_time.o \
|
|
|
|
btree_ts.o \
|
|
|
|
btree_utils_num.o \
|
|
|
|
btree_utils_var.o \
|
|
|
|
btree_uuid.o
|
2003-02-19 03:46:00 +00:00
|
|
|
|
2011-02-13 20:06:41 -05:00
|
|
|
EXTENSION = btree_gist
|
2016-11-29 14:08:23 -05:00
|
|
|
DATA = btree_gist--unpackaged--1.0.sql btree_gist--1.0--1.1.sql \
|
2017-03-15 11:16:25 -04:00
|
|
|
btree_gist--1.1--1.2.sql btree_gist--1.2.sql btree_gist--1.2--1.3.sql \
|
2017-03-21 10:19:03 -04:00
|
|
|
btree_gist--1.3--1.4.sql btree_gist--1.4--1.5.sql
|
2015-08-22 21:41:13 -04:00
|
|
|
PGFILEDESC = "btree_gist - B-tree equivalent GiST operator classes"
|
2003-02-19 03:46:00 +00:00
|
|
|
|
2011-03-03 01:43:38 -05:00
|
|
|
REGRESS = init int2 int4 int8 float4 float8 cash oid timestamp timestamptz \
|
2017-03-15 11:16:25 -04:00
|
|
|
time timetz date interval macaddr macaddr8 inet cidr text varchar char \
|
2017-03-21 10:19:03 -04:00
|
|
|
bytea bit varbit numeric uuid not_equal enum
|
2011-03-03 01:43:38 -05:00
|
|
|
|
|
|
|
SHLIB_LINK += $(filter -lm, $(LIBS))
|
2003-02-19 03:46:00 +00:00
|
|
|
|
2004-08-20 20:13:10 +00:00
|
|
|
ifdef USE_PGXS
|
2007-06-26 22:05:04 +00:00
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
2004-08-20 20:13:10 +00:00
|
|
|
include $(PGXS)
|
|
|
|
else
|
|
|
|
subdir = contrib/btree_gist
|
|
|
|
top_builddir = ../..
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 10:43:32 +00:00
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
2004-08-20 20:13:10 +00:00
|
|
|
endif
|