diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-12-25 21:58:24 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-12-25 22:02:18 +0100 |
commit | eaf1c41bde2b58446697360af454266c4dc594a4 (patch) | |
tree | 754b833fe9558cce8d4b6e911f105869d72e5da8 /Makefile.am | |
parent | 2bba7d602744ccd6dab26940661f0fdfbf231af8 (diff) | |
download | dabmod-eaf1c41bde2b58446697360af454266c4dc594a4.tar.gz dabmod-eaf1c41bde2b58446697360af454266c4dc594a4.tar.bz2 dabmod-eaf1c41bde2b58446697360af454266c4dc594a4.zip |
Add -ffast-math configure option
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/Makefile.am b/Makefile.am index c52405e..a778975 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,7 @@ # Copyright (C) 2007, 2008, 2009, 2010 Her Majesty the Queen in Right # of Canada (Communications Research Center Canada) # -# Copyright (C) 2014, 2015 +# Copyright (C) 2016 # Matthias P. Braendli, matthias.braendli@mpb.li # http://opendigitalradio.org @@ -31,20 +31,14 @@ else GITVERSION_FLAGS = endif -if DEBUG -DEBUG_FLAGS = -DDEBUG -else -DEBUG_FLAGS = -endif - bin_PROGRAMS = odr-dabmod FFT_LDADD= odr_dabmod_CXXFLAGS = -Wall -Isrc -std=c++11 \ - $(GITVERSION_FLAGS) $(DEBUG_FLAGS) + $(GITVERSION_FLAGS) odr_dabmod_CFLAGS = -Wall -Isrc \ - $(GITVERSION_FLAGS) $(DEBUG_FLAGS) + $(GITVERSION_FLAGS) odr_dabmod_LDADD = $(FFT_LDADD) odr_dabmod_SOURCES = src/DabMod.cpp \ src/PcDebug.h \ |