mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
subdir = contrib/tsearch2
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
|
|
override CPPFLAGS := -I$(srcdir) -I$(srcdir)/snowball -I$(srcdir)/ispell -I$(srcdir)/wordparser $(CPPFLAGS)
|
|
|
|
MODULE_big = tsearch2
|
|
OBJS = dict_ex.o dict.o snmap.o stopword.o common.o prs_dcfg.o \
|
|
dict_snowball.o dict_ispell.o dict_syn.o \
|
|
wparser.o wparser_def.o \
|
|
ts_cfg.o tsvector.o rewrite.o crc32.o query.o gistidx.o \
|
|
tsvector_op.o rank.o ts_stat.o
|
|
|
|
SUBDIRS := snowball ispell wordparser
|
|
SUBDIROBJS := $(SUBDIRS:%=%/SUBSYS.o)
|
|
|
|
OBJS:= $(OBJS) $(SUBDIROBJS)
|
|
|
|
$(SUBDIROBJS): $(SUBDIRS:%=%-recursive) ;
|
|
|
|
$(SUBDIRS:%=%-recursive):
|
|
$(MAKE) -C $(subst -recursive,,$@) SUBSYS.o
|
|
|
|
DATA_built = tsearch2.sql untsearch2.sql
|
|
DOCS = README.tsearch2
|
|
REGRESS = tsearch2
|
|
|
|
EXTRA_CLEAN = tsearch2.sql.in
|
|
|
|
SHLIB_LINK := -lm
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
# DO NOT DELETE
|
|
|
|
install: installstop
|
|
|
|
installstop:
|
|
cp $(srcdir)/stopword/*.stop $(datadir)
|
|
|
|
|
|
tsearch2.sql.in: tsearch.sql._in
|
|
sed 's,DATA_PATH,$(datadir),g' < $< > $@
|
|
|
|
untsearch2.sql: untsearch.sql.in
|
|
cp $< $@
|
|
|
|
clean: subclean
|
|
|
|
subclean:
|
|
for dir in $(SUBDIRS); do $(MAKE) -C $$dir clean || exit; done
|
|
|