2010-09-21 04:08:53 +08:00
|
|
|
# contrib/btree_gist/Makefile
|
2001-09-06 18:49:30 +08:00
|
|
|
|
2011-03-03 14:43:38 +08:00
|
|
|
MODULE_big = btree_gist
|
2001-08-23 02:27:54 +08:00
|
|
|
|
2011-03-03 14:43:38 +08:00
|
|
|
OBJS = btree_gist.o btree_utils_num.o btree_utils_var.o btree_int2.o \
|
|
|
|
btree_int4.o btree_int8.o btree_float4.o btree_float8.o btree_cash.o \
|
|
|
|
btree_oid.o btree_ts.o btree_time.o btree_date.o btree_interval.o \
|
|
|
|
btree_macaddr.o btree_inet.o btree_text.o btree_bytea.o btree_bit.o \
|
2014-07-15 02:07:52 +08:00
|
|
|
btree_numeric.o $(WIN32RES)
|
2003-02-19 11:46:00 +08:00
|
|
|
|
2011-02-14 09:06:41 +08:00
|
|
|
EXTENSION = btree_gist
|
|
|
|
DATA = btree_gist--1.0.sql btree_gist--unpackaged--1.0.sql
|
2014-07-15 02:07:52 +08:00
|
|
|
PGFILEDESC = "btree_gist - B-tree equivalent GIST operator classes"
|
2003-02-19 11:46:00 +08:00
|
|
|
|
2011-03-03 14:43:38 +08:00
|
|
|
REGRESS = init int2 int4 int8 float4 float8 cash oid timestamp timestamptz \
|
|
|
|
time timetz date interval macaddr inet cidr text varchar char bytea \
|
|
|
|
bit varbit numeric not_equal
|
|
|
|
|
|
|
|
SHLIB_LINK += $(filter -lm, $(LIBS))
|
2003-02-19 11:46:00 +08:00
|
|
|
|
2004-08-21 04:13:10 +08:00
|
|
|
ifdef USE_PGXS
|
2007-06-27 06:05:04 +08:00
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
2004-08-21 04:13:10 +08: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 18:43:32 +08:00
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
2004-08-21 04:13:10 +08:00
|
|
|
endif
|