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