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