aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-01-15 12:02:42 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-01-15 12:02:42 +0100
commit1b435445080d82e5febc82270ddb46488d7f326e (patch)
tree2e31665514adf3e4bf2a03206f9517e13f00cc04
parent5e6b051087bafdbd6f34a04ec36e9b0a7519821f (diff)
downloadetisnoop-1b435445080d82e5febc82270ddb46488d7f326e.tar.gz
etisnoop-1b435445080d82e5febc82270ddb46488d7f326e.tar.bz2
etisnoop-1b435445080d82e5febc82270ddb46488d7f326e.zip
Update makefile
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 3641f94..84f4cf1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,16 +1,16 @@
CXX=g++
-SOURCES=etisnoop.cpp dabplussnoop.cpp lib_crc.c firecode.c faad_decoder.cpp wavfile.c etiinput.cpp
-HEADERS=dabplussnoop.h lib_crc.h firecode.h faad_decoder.h wavfile.h etiinput.h
+SOURCES=etisnoop.cpp dabplussnoop.cpp lib_crc.c firecode.c faad_decoder.cpp wavfile.c etiinput.cpp rsdecoder.cpp
+HEADERS=dabplussnoop.h lib_crc.h firecode.h faad_decoder.h wavfile.h etiinput.h rsdecoder.h
all: etisnoop
etisnoop: $(SOURCES) $(HEADERS)
- $(CXX) -Wall -ggdb $(SOURCES) $(HEADERS) -lfaad -o etisnoop
+ $(CXX) -std=c++11 -Wall -ggdb $(SOURCES) -lfaad -lfec -o etisnoop
etisnoop-static: libfaad $(SOURCES) $(HEADERS)
- $(CXX) -Wall -ggdb $(SOURCES) $(HEADERS) -Ifaad2-2.7/include faad2-2.7/libfaad/.libs/libfaad.a -o etisnoop
+ $(CXX) -std=c++11 -Wall -ggdb $(SOURCES) -lfec -Ifaad2-2.7/include faad2-2.7/libfaad/.libs/libfaad.a -o etisnoop
libfaad:
make -C ./faad2-2.7