2004-08-21 04:13:10 +08:00
|
|
|
# $PostgreSQL: pgsql/contrib/tsearch2/Makefile,v 1.7 2004/08/20 20:13:09 momjian Exp $
|
2003-07-21 18:27:44 +08:00
|
|
|
|
|
|
|
MODULE_big = tsearch2
|
|
|
|
OBJS = dict_ex.o dict.o snmap.o stopword.o common.o prs_dcfg.o \
|
2003-08-04 22:54:47 +08:00
|
|
|
dict_snowball.o dict_ispell.o dict_syn.o \
|
|
|
|
wparser.o wparser_def.o \
|
2003-07-21 18:27:44 +08:00
|
|
|
ts_cfg.o tsvector.o rewrite.o crc32.o query.o gistidx.o \
|
|
|
|
tsvector_op.o rank.o ts_stat.o
|
|
|
|
|
2003-08-04 22:54:47 +08:00
|
|
|
SUBDIRS := snowball ispell wordparser
|
|
|
|
SUBDIROBJS := $(SUBDIRS:%=%/SUBSYS.o)
|
|
|
|
|
2004-08-21 04:13:10 +08:00
|
|
|
OBJS += $(SUBDIROBJS)
|
2003-08-04 22:54:47 +08:00
|
|
|
|
2003-08-23 12:25:29 +08:00
|
|
|
PG_CPPFLAGS = -I$(srcdir)/snowball -I$(srcdir)/ispell -I$(srcdir)/wordparser
|
|
|
|
|
|
|
|
DATA = stopword/english.stop stopword/russian.stop
|
2003-07-21 18:27:44 +08:00
|
|
|
DATA_built = tsearch2.sql untsearch2.sql
|
|
|
|
DOCS = README.tsearch2
|
|
|
|
REGRESS = tsearch2
|
|
|
|
|
|
|
|
SHLIB_LINK := -lm
|
|
|
|
|
2004-08-21 04:13:10 +08:00
|
|
|
|
|
|
|
ifdef USE_PGXS
|
|
|
|
PGXS = $(shell pg_config --pgxs)
|
|
|
|
include $(PGXS)
|
|
|
|
else
|
|
|
|
subdir = contrib/tsearch2
|
|
|
|
top_builddir = ../..
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
$(SUBDIROBJS): $(SUBDIRS:%=%-recursive) ;
|
|
|
|
|
|
|
|
$(SUBDIRS:%=%-recursive):
|
|
|
|
$(MAKE) -C $(subst -recursive,,$@) SUBSYS.o
|
|
|
|
|
2003-08-23 12:25:29 +08:00
|
|
|
tsearch2.sql: tsearch.sql.in
|
2003-08-26 18:01:02 +08:00
|
|
|
sed -e 's,MODULE_PATHNAME,$$libdir/$(MODULE_big),g' \
|
2003-08-23 12:25:29 +08:00
|
|
|
-e 's,DATA_PATH,$(datadir)/contrib,g' $< >$@
|
2003-07-21 18:27:44 +08:00
|
|
|
|
|
|
|
untsearch2.sql: untsearch.sql.in
|
2003-08-04 22:54:47 +08:00
|
|
|
cp $< $@
|
|
|
|
|
2003-08-23 12:25:29 +08:00
|
|
|
.PHONY: subclean
|
2003-08-04 22:54:47 +08:00
|
|
|
clean: subclean
|
2003-07-21 18:27:44 +08:00
|
|
|
|
2003-08-04 22:54:47 +08:00
|
|
|
subclean:
|
|
|
|
for dir in $(SUBDIRS); do $(MAKE) -C $$dir clean || exit; done
|