1
2include $(top_srcdir)/Makefile.config
3
4bindir = $(CGIBIN_DIR)
5
6LOCAL_DEFINES = -DCONFIG_DIR=\"$(CONFIG_DIR)\" -I$(top_srcdir)/htfuzzy
7
8bin_PROGRAMS = htsearch qtest
9
10htsearch_SOURCES = Display.cc DocMatch.cc ResultList.cc ResultMatch.cc \
11		Template.cc TemplateList.cc WeightWord.cc htsearch.cc \
12		parser.cc Collection.cc SplitMatches.cc HtURLSeedScore.cc
13noinst_HEADERS = Display.h DocMatch.h ResultList.h ResultMatch.h \
14	Template.h TemplateList.h WeightWord.h htsearch.h parser.h \
15	Collection.h SplitMatches.h HtURLSeedScore.h \
16	WordSearcher.h AndQuery.h AndQueryParser.h BooleanLexer.h \
17	BooleanQueryParser.h ExactWordQuery.h FuzzyExpander.h GParser.h \
18	NearQuery.h NotQuery.h OperatorQuery.h OrFuzzyExpander.h \
19	OrQuery.h OrQueryParser.h PhraseQuery.h Query.h QueryCache.h \
20	QueryLexer.h QueryParser.h SimpleLexer.h SimpleQueryParser.h \
21	VolatileCache.h
22htsearch_DEPENDENCIES = $(top_builddir)/htfuzzy/libfuzzy.la $(HTLIBS)
23htsearch_LDFLAGS = $(PROFILING) ${extra_ldflags}
24htsearch_LDADD = $(top_builddir)/htfuzzy/libfuzzy.la $(HTLIBS)
25
26qtest_SOURCES = DocMatch.cc ResultList.cc AndQuery.cc \
27	BooleanLexer.cc BooleanQueryParser.cc ExactWordQuery.cc \
28	GParser.cc NearQuery.cc NotQuery.cc OperatorQuery.cc \
29	OrFuzzyExpander.cc OrQuery.cc PhraseQuery.cc Query.cc \
30	QueryLexer.cc QueryParser.cc SimpleQueryParser.cc VolatileCache.cc \
31	WordSearcher.cc qtest.cc
32qtest_DEPENDENCIES = $(top_builddir)/htfuzzy/libfuzzy.la $(HTLIBS)
33qtest_LDFLAGS = $(PROFILING) ${extra_ldflags}
34qtest_LDADD = $(top_builddir)/htfuzzy/libfuzzy.la $(HTLIBS)
35
36