diff options
author | Chris Dyer <cdyer@Chriss-MacBook-Air.local> | 2013-04-27 13:03:30 -0400 |
---|---|---|
committer | Chris Dyer <cdyer@Chriss-MacBook-Air.local> | 2013-04-27 13:03:30 -0400 |
commit | 3d3f7439963bf978b4bec6e3e021b850bcd5822f (patch) | |
tree | 97a802fb9ced3a0a75c3fe137c72bccc23053be8 /extractor | |
parent | 389f77ddd6a8eabe357691a9476f061f6262e563 (diff) |
fix build if you don't have c++11
Diffstat (limited to 'extractor')
-rw-r--r-- | extractor/Makefile.am | 3 |
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 |