1# contrib/dict_xsyn/Makefile 2 3MODULE_big = dict_xsyn 4OBJS = dict_xsyn.o $(WIN32RES) 5 6EXTENSION = dict_xsyn 7DATA = dict_xsyn--1.0.sql dict_xsyn--unpackaged--1.0.sql 8DATA_TSEARCH = xsyn_sample.rules 9PGFILEDESC = "dict_xsyn - add-on dictionary template for full-text search" 10 11REGRESS = dict_xsyn 12 13ifdef USE_PGXS 14PG_CONFIG = pg_config 15PGXS := $(shell $(PG_CONFIG) --pgxs) 16include $(PGXS) 17else 18subdir = contrib/dict_xsyn 19top_builddir = ../.. 20include $(top_builddir)/src/Makefile.global 21include $(top_srcdir)/contrib/contrib-global.mk 22endif 23