diff options
author | Avneesh <avneesh@cmu.edu> | 2012-09-28 11:09:33 -0700 |
---|---|---|
committer | Avneesh <avneesh@cmu.edu> | 2012-09-28 11:09:33 -0700 |
commit | d3fa97575ddfe1a91b13a407ade5f86bd305b2e0 (patch) | |
tree | 34121c3be41833321a62341d16a9f279a40be5f4 /latent_svm/Makefile.am | |
parent | 38ae810fe374ff7fb548b1a15f7c2ee7dcd94000 (diff) |
adding latent SSVM code, modified Makefile.am and configure.ac files
Diffstat (limited to 'latent_svm/Makefile.am')
-rw-r--r-- | latent_svm/Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/latent_svm/Makefile.am b/latent_svm/Makefile.am new file mode 100644 index 00000000..673b9159 --- /dev/null +++ b/latent_svm/Makefile.am @@ -0,0 +1,6 @@ +bin_PROGRAMS = latent_svm + +latent_svm_SOURCES = latent_svm.cc +latent_svm_LDADD = $(top_srcdir)/decoder/libcdec.a $(top_srcdir)/mteval/libmteval.a $(top_srcdir)/utils/libutils.a ../klm/lm/libklm.a ../klm/util/libklm_util.a -lz + +AM_CPPFLAGS = -W -Wall -Wno-sign-compare -I$(top_srcdir)/utils -I$(top_srcdir)/decoder -I$(top_srcdir)/mteval |