2010-09-21 00:08:53 +04:00
|
|
|
# contrib/btree_gist/Makefile
|
2001-09-06 14:49:30 +04:00
|
|
|
|
2011-03-03 09:43:38 +03:00
|
|
|
MODULE_big = btree_gist
|
2001-08-22 22:27:54 +04:00
|
|
|
|
2011-03-03 09:43:38 +03: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 \
|
|
|
|
btree_numeric.o
|
2003-02-19 06:46:00 +03:00
|
|
|
|
2011-02-14 04:06:41 +03:00
|
|
|
EXTENSION = btree_gist
|
|
|
|
DATA = btree_gist--1.0.sql btree_gist--unpackaged--1.0.sql
|
2003-02-19 06:46:00 +03:00
|
|
|
|
2011-03-03 09:43:38 +03: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 06:46:00 +03:00
|
|
|
|
2004-08-21 00:13:10 +04:00
|
|
|
ifdef USE_PGXS
|
2007-06-27 02:05:04 +04:00
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
2004-08-21 00:13:10 +04: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 14:43:32 +04:00
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
2004-08-21 00:13:10 +04:00
|
|
|
endif
|