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 /training/liblbfgs | |
parent | 5b5fd62f6fae315e3be55c54984d3385858e034e (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.. ################################################################ + |