summaryrefslogtreecommitdiff
path: root/extractor/Makefile.am
diff options
context:
space:
mode:
authorChris Dyer <redpony@gmail.com>2014-01-20 20:00:16 -0500
committerChris Dyer <redpony@gmail.com>2014-01-20 20:00:16 -0500
commit44a54840b888a9cdd6444472da88f480ceafced2 (patch)
treee518550aae77a88c4f4078884a3d0648ff00fb4e /extractor/Makefile.am
parent02a764cc553f238cdd0be4c6dee4ea144cda84ba (diff)
fix for build
Diffstat (limited to 'extractor/Makefile.am')
-rw-r--r--extractor/Makefile.am11
1 files changed, 4 insertions, 7 deletions
diff --git a/extractor/Makefile.am b/extractor/Makefile.am
index e5b439f9..40112e5e 100644
--- a/extractor/Makefile.am
+++ b/extractor/Makefile.am
@@ -1,7 +1,5 @@
-bin_PROGRAMS = compile run_extractor extract
-
-if HAVE_CXX11
+bin_PROGRAMS = sacompile run_extractor extract
EXTRA_PROGRAMS = alignment_test \
data_array_test \
@@ -114,8 +112,8 @@ vocabulary_test_LDADD = $(GTEST_LDFLAGS) $(GTEST_LIBS) libextractor.a
noinst_LIBRARIES = libextractor.a
-compile_SOURCES = compile.cc
-compile_LDADD = libextractor.a
+sacompile_SOURCES = sacompile.cc
+sacompile_LDADD = libextractor.a
run_extractor_SOURCES = run_extractor.cc
run_extractor_LDADD = libextractor.a
extract_SOURCES = extract.cc
@@ -156,6 +154,5 @@ libextractor_a_SOURCES = \
translation_table.cc \
vocabulary.cc
-AM_CPPFLAGS = -W -Wall -Wno-sign-compare $(CXX11_SWITCH) -fopenmp $(GTEST_CPPFLAGS) $(GMOCK_CPPFLAGS)
+AM_CPPFLAGS = -W -Wall -Wno-sign-compare -fopenmp $(GTEST_CPPFLAGS) $(GMOCK_CPPFLAGS)
AM_LDFLAGS = -fopenmp
-endif