mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
subdir = contrib/tsearch2
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
|
|
override CPPFLAGS := -I. -I./snowball -I./ispell -I./wordparser $(CPPFLAGS)
|
|
|
|
MODULE_big = tsearch2
|
|
OBJS = dict_ex.o dict.o snmap.o stopword.o common.o prs_dcfg.o \
|
|
snowball/english_stem.o snowball/api.o snowball/russian_stem.o snowball/utilities.o \
|
|
dict_snowball.o ispell/spell.o dict_ispell.o dict_syn.o \
|
|
wparser.o wordparser/parser.o wordparser/deflex.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
|
|
|
|
DATA_built = tsearch2.sql untsearch2.sql
|
|
DOCS = README.tsearch2
|
|
REGRESS = tsearch2
|
|
|
|
wordparser/parser.c: wordparser/parser.l
|
|
ifdef FLEX
|
|
$(FLEX) $(FLEXFLAGS) -8 -Ptsearch2_yy -o'$@' $<
|
|
else
|
|
@$(missing) flex $< $@
|
|
endif
|
|
|
|
EXTRA_CLEAN = wordparser/parser.c tsearch2.sql.in
|
|
|
|
SHLIB_LINK := -lm
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
# DO NOT DELETE
|
|
|
|
install: installstop
|
|
|
|
installstop:
|
|
cp stopword/*.stop $(datadir)
|
|
|
|
|
|
tsearch2.sql.in: tsearch.sql._in
|
|
sed 's,DATA_PATH,$(datadir),g' < $< > $@
|
|
|
|
untsearch2.sql: untsearch.sql.in
|
|
cp $< $@
|
|
|