2010-09-21 00:08:53 +04:00
|
|
|
# contrib/dict_int/Makefile
|
2007-10-16 01:36:50 +04:00
|
|
|
|
|
|
|
MODULE_big = dict_int
|
2019-11-06 01:41:07 +03:00
|
|
|
OBJS = \
|
|
|
|
$(WIN32RES) \
|
|
|
|
dict_int.o
|
2011-02-14 04:06:41 +03:00
|
|
|
|
|
|
|
EXTENSION = dict_int
|
|
|
|
DATA = dict_int--1.0.sql dict_int--unpackaged--1.0.sql
|
2014-07-14 22:07:52 +04:00
|
|
|
PGFILEDESC = "dict_int - add-on dictionary template for full-text search"
|
2011-02-14 04:06:41 +03:00
|
|
|
|
2007-10-16 01: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
|