2010-09-21 04:08:53 +08:00
|
|
|
# contrib/dict_int/Makefile
|
2007-10-16 05:36:50 +08:00
|
|
|
|
|
|
|
MODULE_big = dict_int
|
2019-11-06 06:41:07 +08:00
|
|
|
OBJS = \
|
|
|
|
$(WIN32RES) \
|
|
|
|
dict_int.o
|
2011-02-14 09:06:41 +08:00
|
|
|
|
|
|
|
EXTENSION = dict_int
|
2020-02-20 05:59:14 +08:00
|
|
|
DATA = dict_int--1.0.sql
|
2014-07-15 02:07:52 +08:00
|
|
|
PGFILEDESC = "dict_int - 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_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
|