summaryrefslogtreecommitdiff
path: root/pro-train/Makefile.am
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2011-07-10 23:00:21 -0400
committerChris Dyer <cdyer@cs.cmu.edu>2011-07-10 23:00:21 -0400
commit95deb840699f9b6f8fe499b374bd726bce97365c (patch)
tree64d0299b2da95122d18654f254ae41c14bcb456d /pro-train/Makefile.am
parentf68aaa588a2e1eb7cef5a57d57dd7e86fd4b0c9a (diff)
starting implementation of Hopkins&May (2011) optimizer
Diffstat (limited to 'pro-train/Makefile.am')
-rw-r--r--pro-train/Makefile.am13
1 files changed, 13 insertions, 0 deletions
diff --git a/pro-train/Makefile.am b/pro-train/Makefile.am
new file mode 100644
index 00000000..945ed5c3
--- /dev/null
+++ b/pro-train/Makefile.am
@@ -0,0 +1,13 @@
+bin_PROGRAMS = \
+ mr_pro_map \
+ mr_pro_reduce
+
+TESTS = lo_test
+
+mr_pro_map_SOURCES = mr_pro_map.cc
+mr_pro_map_LDADD = $(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)/decoder/libcdec.a $(top_srcdir)/mteval/libmteval.a $(top_srcdir)/utils/libutils.a -lz
+
+AM_CPPFLAGS = -W -Wall -Wno-sign-compare $(GTEST_CPPFLAGS) -I$(top_srcdir)/utils -I$(top_srcdir)/decoder -I$(top_srcdir)/mteval