diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2012-05-08 15:19:40 -0400 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2012-05-08 15:19:40 -0400 |
commit | 4ecae3b2e34a45dfdf22f4f244fbbcd66c8635b0 (patch) | |
tree | 2bdbb243cede55e2277b497aaa97f1f707d2989e /training/liblbfgs/Makefile.am | |
parent | ce9a18da4516f53ecf23fb7522562aef2d470397 (diff) |
add liblbfgs, which is much less crappy than the current one
Diffstat (limited to 'training/liblbfgs/Makefile.am')
-rw-r--r-- | training/liblbfgs/Makefile.am | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/training/liblbfgs/Makefile.am b/training/liblbfgs/Makefile.am new file mode 100644 index 00000000..9327c47f --- /dev/null +++ b/training/liblbfgs/Makefile.am @@ -0,0 +1,13 @@ +TESTS = ll_test +noinst_PROGRAMS = ll_test +ll_test_SOURCES = ll_test.cc + +noinst_LIBRARIES = liblbfgs.a + +liblbfgs_a_SOURCES = lbfgs.c + +################################################################ +# 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.. +################################################################ |