summaryrefslogtreecommitdiff
path: root/pro/Makefile.am
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2012-11-18 11:31:21 -0500
committerChris Dyer <cdyer@cs.cmu.edu>2012-11-18 11:31:21 -0500
commit18b03de69250d5c389abfc36e7cc0a0968f970b5 (patch)
treecddb4c783b2e58879ac5a8c4bcc24a66352aa6db /pro/Makefile.am
parentc401956e25295bdb97dd633817ff9a4f1dcf8c4c (diff)
more consistent naming, interface, fix compile error
Diffstat (limited to 'pro/Makefile.am')
-rw-r--r--pro/Makefile.am11
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