• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1MY_INCLUDE = -I$(top_srcdir)/include -I$(top_srcdir)/lib
2MY_LIBS = $(top_srcdir)/lib/marisa/libmarisa.la libcmdopt.la
3
4AM_CXXFLAGS = -Wall -Weffc++ -Wextra -Wconversion $(MY_INCLUDE)
5
6noinst_LTLIBRARIES = libcmdopt.la
7
8libcmdopt_la_SOURCES = cmdopt.cc
9
10noinst_HEADERS = cmdopt.h
11
12bin_PROGRAMS = \
13  marisa-build \
14  marisa-lookup \
15  marisa-reverse-lookup \
16  marisa-common-prefix-search \
17  marisa-predictive-search \
18  marisa-dump \
19  marisa-benchmark
20
21marisa_build_SOURCES = marisa-build.cc
22marisa_build_LDADD = $(MY_LIBS)
23
24marisa_lookup_SOURCES = marisa-lookup.cc
25marisa_lookup_LDADD = $(MY_LIBS)
26
27marisa_reverse_lookup_SOURCES = marisa-reverse-lookup.cc
28marisa_reverse_lookup_LDADD = $(MY_LIBS)
29
30marisa_common_prefix_search_SOURCES = marisa-common-prefix-search.cc
31marisa_common_prefix_search_LDADD = $(MY_LIBS)
32
33marisa_predictive_search_SOURCES = marisa-predictive-search.cc
34marisa_predictive_search_LDADD = $(MY_LIBS)
35
36marisa_dump_SOURCES = marisa-dump.cc
37marisa_dump_LDADD = $(MY_LIBS)
38
39marisa_benchmark_SOURCES = marisa-benchmark.cc
40marisa_benchmark_LDADD = $(MY_LIBS)
41