2010-09-21 04:08:53 +08:00
|
|
|
# contrib/hstore/Makefile
|
2007-02-10 01:04:00 +08:00
|
|
|
|
2006-09-06 02:00:58 +08:00
|
|
|
MODULE_big = hstore
|
2009-10-01 03:50:22 +08:00
|
|
|
OBJS = hstore_io.o hstore_op.o hstore_gist.o hstore_gin.o hstore_compat.o \
|
|
|
|
crc32.o
|
2006-09-06 02:00:58 +08:00
|
|
|
|
2011-02-14 09:06:41 +08:00
|
|
|
EXTENSION = hstore
|
2012-02-23 09:37:13 +08:00
|
|
|
DATA = hstore--1.1.sql hstore--1.0--1.1.sql hstore--unpackaged--1.0.sql
|
2011-02-14 09:06:41 +08:00
|
|
|
|
2006-09-06 02:00:58 +08:00
|
|
|
REGRESS = hstore
|
|
|
|
|
2011-01-24 12:07:55 +08:00
|
|
|
ifdef USE_PGXS
|
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
|
|
include $(PGXS)
|
|
|
|
else
|
|
|
|
subdir = contrib/hstore
|
|
|
|
top_builddir = ../..
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
2006-09-06 02:00:58 +08:00
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
2011-01-24 12:07:55 +08:00
|
|
|
endif
|