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 /training/liblbfgs | |
parent | f6ce733312648a3dfce070cc571794e70a12881c (diff) |
add header files to sources to create correct distributions
Diffstat (limited to 'training/liblbfgs')
-rw-r--r-- | training/liblbfgs/Makefile.am | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/training/liblbfgs/Makefile.am b/training/liblbfgs/Makefile.am index 64a3794d..f0d5c8aa 100644 --- a/training/liblbfgs/Makefile.am +++ b/training/liblbfgs/Makefile.am @@ -6,10 +6,17 @@ ll_test_LDADD = liblbfgs.a -lz noinst_LIBRARIES = liblbfgs.a -liblbfgs_a_SOURCES = lbfgs.c +liblbfgs_a_SOURCES = \ + lbfgs.c \ + arithmetic_ansi.h \ + arithmetic_sse_double.h \ + arithmetic_sse_float.h \ + lbfgs++.h \ + lbfgs.h ################################################################ # do NOT NOT NOT add any other -I includes NO NO NO NO NO ###### AM_LDFLAGS = liblbfgs.a -lz AM_CPPFLAGS = -DBOOST_TEST_DYN_LINK -W -Wall -I. -I.. ################################################################ + |