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 \
+ 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
-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
+EXTRA_CLEAN = tsearch2.sql.in
SHLIB_LINK := -lm
include $(top_srcdir)/contrib/contrib-global.mk
sed 's,DATA_PATH,$(datadir),g' < $< > $@
untsearch2.sql: untsearch.sql.in
- cp $< $@
+ cp $< $@
+
+clean: subclean
+subclean:
+ for dir in $(SUBDIRS); do $(MAKE) -C $$dir clean || exit; done
+
--- /dev/null
+subdir = contrib/tsearch2/ispell
+top_builddir = ../../..
+include $(top_builddir)/src/Makefile.global
+
+
+override CPPFLAGS := -I. -I.. $(CPPFLAGS)
+
+SUBOBJS = spell.o
+
+all: SUBSYS.o
+
+SUBSYS.o: $(SUBOBJS)
+ $(LD) $(LDREL) $(LDOUT) $@ $^
+
+EXTRA_CLEAN = SUBSYS.o $(SUBOBJS)
+
+include $(top_srcdir)/contrib/contrib-global.mk
+# DO NOT DELETE
+
+
--- /dev/null
+subdir = contrib/tsearch2/snowball
+top_builddir = ../../..
+include $(top_builddir)/src/Makefile.global
+
+
+override CPPFLAGS := -I. -I.. $(CPPFLAGS)
+
+SUBOBJS = english_stem.o api.o russian_stem.o utilities.o
+
+all: SUBSYS.o
+
+SUBSYS.o: $(SUBOBJS)
+ $(LD) $(LDREL) $(LDOUT) $@ $^
+
+EXTRA_CLEAN = SUBSYS.o $(SUBOBJS)
+
+include $(top_srcdir)/contrib/contrib-global.mk
+# DO NOT DELETE
+
+
--- /dev/null
+subdir = contrib/tsearch2/wordparser
+top_builddir = ../../..
+include $(top_builddir)/src/Makefile.global
+
+
+override CPPFLAGS := -I. -I.. $(CPPFLAGS)
+
+SUBOBJS = parser.o deflex.o
+
+all: SUBSYS.o
+
+parser.c: parser.l
+ifdef FLEX
+ $(FLEX) $(FLEXFLAGS) -8 -Ptsearch2_yy -o'$@' $<
+else
+ @$(missing) flex $< $@
+endif
+
+SUBSYS.o: $(SUBOBJS)
+ $(LD) $(LDREL) $(LDOUT) $@ $^
+
+EXTRA_CLEAN = SUBSYS.o $(SUBOBJS) parser.c
+
+include $(top_srcdir)/contrib/contrib-global.mk
+# DO NOT DELETE
+
+