diff options
Diffstat (limited to 'klm/search/Makefile.am')
-rw-r--r-- | klm/search/Makefile.am | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/klm/search/Makefile.am b/klm/search/Makefile.am new file mode 100644 index 00000000..03554276 --- /dev/null +++ b/klm/search/Makefile.am @@ -0,0 +1,23 @@ +noinst_LIBRARIES = libksearch.a + +libksearch_a_SOURCES = \ + applied.hh \ + config.hh \ + context.hh \ + dedupe.hh \ + edge.hh \ + edge_generator.hh \ + header.hh \ + nbest.hh \ + rule.hh \ + types.hh \ + vertex.hh \ + vertex_generator.hh \ + edge_generator.cc \ + nbest.cc \ + rule.cc \ + vertex.cc \ + vertex_generator.cc + +AM_CPPFLAGS = -W -Wall -Wno-sign-compare -I$(top_srcdir)/klm + |