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 | 41bc60a856dc2d0bf9659b443c0cd03be8016db7 (patch) | |
tree | 9c3c75010ec0ba5faef6c0356ef8f6433d8a0d35 /klm/search | |
parent | 5b5fd62f6fae315e3be55c54984d3385858e034e (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.. |