2010-09-21 00:08:53 +04:00
|
|
|
# contrib/intarray/Makefile
|
2001-01-12 03:16:26 +03:00
|
|
|
|
2003-06-11 22:44:15 +04:00
|
|
|
MODULE_big = _int
|
2010-11-23 23:27:50 +03:00
|
|
|
OBJS = _int_bool.o _int_gist.o _int_op.o _int_tool.o _intbig_gist.o _int_gin.o
|
2001-09-06 14:49:30 +04:00
|
|
|
DATA_built = _int.sql
|
2006-02-27 15:54:39 +03:00
|
|
|
DATA = uninstall__int.sql
|
2001-09-06 14:49:30 +04:00
|
|
|
REGRESS = _int
|
2001-01-12 03:16:26 +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/intarray
|
|
|
|
top_builddir = ../..
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
2001-09-06 14:49:30 +04:00
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
2004-08-21 00:13:10 +04:00
|
|
|
endif
|