diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2012-11-18 11:31:21 -0500 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2012-11-18 11:31:21 -0500 |
commit | 7640d85b92f61016e0712825920c6a259329d79b (patch) | |
tree | 185ec46bc0f4836082cca585dc8e67c80a7ebe99 /pro/Makefile.am | |
parent | 2de96e4b06fd0ff6131f3ec9630e9df330cf9b14 (diff) |
more consistent naming, interface, fix compile error
Diffstat (limited to 'pro/Makefile.am')
-rw-r--r-- | pro/Makefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pro/Makefile.am b/pro/Makefile.am new file mode 100644 index 00000000..1e9d46b0 --- /dev/null +++ b/pro/Makefile.am @@ -0,0 +1,11 @@ +bin_PROGRAMS = \ + mr_pro_map \ + mr_pro_reduce + +mr_pro_map_SOURCES = mr_pro_map.cc +mr_pro_map_LDADD = $(top_srcdir)/training/libtraining.a $(top_srcdir)/decoder/libcdec.a $(top_srcdir)/mteval/libmteval.a $(top_srcdir)/utils/libutils.a -lz + +mr_pro_reduce_SOURCES = mr_pro_reduce.cc +mr_pro_reduce_LDADD = $(top_srcdir)/training/liblbfgs/liblbfgs.a $(top_srcdir)/utils/libutils.a -lz + +AM_CPPFLAGS = -W -Wall -Wno-sign-compare -I$(top_srcdir)/utils -I$(top_srcdir)/decoder -I$(top_srcdir)/mteval -I$(top_srcdir)/training |