diff options
author | Chris Dyer <cdyer@Chriss-MacBook-Air.local> | 2013-01-08 15:44:45 -0500 |
---|---|---|
committer | Chris Dyer <cdyer@Chriss-MacBook-Air.local> | 2013-01-08 15:44:45 -0500 |
commit | 2538c4052e844ebf6f5615becd087f2d6658c587 (patch) | |
tree | f599271caba95b7ee1239d17e0ac122290e61c1c /klm/search | |
parent | f6ce733312648a3dfce070cc571794e70a12881c (diff) |
add header files to sources to create correct distributions
Diffstat (limited to 'klm/search')
-rw-r--r-- | klm/search/Makefile.am | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/klm/search/Makefile.am b/klm/search/Makefile.am index 5aea33c2..a34f6cea 100644 --- a/klm/search/Makefile.am +++ b/klm/search/Makefile.am @@ -1,11 +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 $(GTEST_CPPFLAGS) -I.. +AM_CPPFLAGS = -W -Wall -Wno-sign-compare -I.. |