summaryrefslogtreecommitdiff
path: root/extractor
diff options
context:
space:
mode:
authorChris Dyer <cdyer@Chriss-MacBook-Air.local>2013-04-27 13:03:30 -0400
committerChris Dyer <cdyer@Chriss-MacBook-Air.local>2013-04-27 13:03:30 -0400
commitd2bb2888146ddf6a002f2ef6a5f26bd577fe2a9a (patch)
treec97c54dd9766a6400e2a5048f486f1ba745c8893 /extractor
parentdf3b23968d5bda4050b7f7a002a7e5a1d7a48a74 (diff)
fix build if you don't have c++11
Diffstat (limited to 'extractor')
-rw-r--r--extractor/Makefile.am3
1 files changed, 3 insertions, 0 deletions
diff --git a/extractor/Makefile.am b/extractor/Makefile.am
index fc799f74..e94a9b91 100644
--- a/extractor/Makefile.am
+++ b/extractor/Makefile.am
@@ -1,3 +1,5 @@
+if HAVE_CXX11
+
bin_PROGRAMS = compile run_extractor
EXTRA_PROGRAMS = alignment_test \
@@ -147,3 +149,4 @@ libextractor_a_SOURCES = \
AM_CPPFLAGS = -W -Wall -Wno-sign-compare $(CXX11_SWITCH) -fopenmp $(GTEST_CPPFLAGS) $(GMOCK_CPPFLAGS)
AM_LDFLAGS = -fopenmp
+endif