2010-09-20 16:08:53 -04:00
|
|
|
# contrib/dict_int/Makefile
|
2007-10-15 17:36:50 -04:00
|
|
|
|
|
|
|
|
MODULE_big = dict_int
|
2014-07-14 14:07:52 -04:00
|
|
|
OBJS = dict_int.o $(WIN32RES)
|
2011-02-13 20:06:41 -05:00
|
|
|
|
|
|
|
|
EXTENSION = dict_int
|
|
|
|
|
DATA = dict_int--1.0.sql dict_int--unpackaged--1.0.sql
|
2014-07-14 14:07:52 -04:00
|
|
|
PGFILEDESC = "dict_int - add-on dictionary template for full-text search"
|
2011-02-13 20:06:41 -05:00
|
|
|
|
2007-10-15 17:36:50 -04:00
|
|
|
REGRESS = dict_int
|
|
|
|
|
|
|
|
|
|
ifdef USE_PGXS
|
|
|
|
|
PG_CONFIG = pg_config
|
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
|
|
|
include $(PGXS)
|
|
|
|
|
else
|
|
|
|
|
subdir = contrib/dict_int
|
|
|
|
|
top_builddir = ../..
|
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
|
|
|
endif
|