2010-09-20 16:08:53 -04:00
|
|
|
# contrib/hstore/Makefile
|
2007-02-09 12:04:00 -05:00
|
|
|
|
2006-09-05 14:00:58 -04:00
|
|
|
MODULE_big = hstore
|
2009-09-30 15:50:22 -04:00
|
|
|
OBJS = hstore_io.o hstore_op.o hstore_gist.o hstore_gin.o hstore_compat.o \
|
|
|
|
|
crc32.o
|
2006-09-05 14:00:58 -04:00
|
|
|
|
2011-02-13 20:06:41 -05:00
|
|
|
EXTENSION = hstore
|
|
|
|
|
DATA = hstore--1.0.sql hstore--unpackaged--1.0.sql
|
|
|
|
|
|
2006-09-05 14:00:58 -04:00
|
|
|
REGRESS = hstore
|
|
|
|
|
|
2011-01-23 23:07:55 -05: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-05 14:00:58 -04:00
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
2011-01-23 23:07:55 -05:00
|
|
|
endif
|