AUTOMAKE_OPTIONS = subdir-objects EXTRA_DIST = bootstrap MAINTAINERCLEANFILES = Makefile.in \ aclocal.m4 \ configure \ config/compile \ config/config.sub \ config/config.guess \ config/depcomp \ config/install-sh \ config/missing \ config/mkinstalldirs lib_LTLIBRARIES = liblucene4c.la liblucene4c_la_SOURCES = src/util/error.c \ src/util/string.c \ src/util/pools.c \ src/store/istream.c \ src/store/directory.c \ src/search/query.c \ src/search/scorer.c \ src/query_parser/parser.c \ src/index/index.c \ src/index/segments.c \ src/index/segment.c \ src/index/term.c \ src/index/terminfos.c \ src/index/frequencies.c \ src/index/fielddata.c \ src/index/fieldinfos.c \ src/document/document.c \ src/document/field.c noinst_PROGRAMS = test/tests bin_PROGRAMS = src/cmdline/lcn test_tests_SOURCES = test/abts.c \ test/lcn_tests.c \ test/util/string_test.c \ test/index/fieldinfos_test.c \ test/index/fielddata_test.c \ test/index/index_test.c \ test/index/segments_test.c \ test/index/segment_test.c \ test/index/terminfos_test.c \ test/index/frequencies_test.c \ test/store/istream_test.c \ test/search/scorer_test.c \ test/query_parser/parser_test.c \ test/store/directory_test.c src_cmdline_lcn_SOURCES = src/cmdline/main.c src_cmdline_lcn_LDADD= liblucene4c.la test_tests_LDADD = liblucene4c.la inst_includesdir = $(includedir)/lucene4c-0 inst_includes_HEADERS = include/lcn_api.h \ include/lcn_directory.h \ include/lcn_document.h \ include/lcn_field.h \ include/lcn_fielddata.h \ include/lcn_fieldinfos.h \ include/lcn_frequencies.h \ include/lcn_index.h \ include/lcn_istream.h \ include/lcn_query.h \ include/lcn_query_parser.h \ include/lcn_scorer.h \ include/lcn_segment.h \ include/lcn_segments.h \ include/lcn_terminfos.h \ include/lcn_term.h \ include/lcn_types.h INCLUDES = -Iinclude -Itest $(LCN_APR_INCLUDES) LIBS = $(LCN_APR_LIBS) -lm check: @./test/tests doxygen: @doxygen doc/doxygen.conf @cp -r doc/doxygen/html/* www/apidocs/