diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-01-15 15:03:38 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-01-15 15:03:38 +0100 |
commit | 3576bfcd68ff58e022efc07ef8e1f1b757ccf6fb (patch) | |
tree | dd8b4ae93ce1b87260794022f56cf8892958692a /Makefile | |
parent | 275b55e39a84a3877e7e68b7c800bd0de28c128c (diff) | |
download | etisnoop-3576bfcd68ff58e022efc07ef8e1f1b757ccf6fb.tar.gz etisnoop-3576bfcd68ff58e022efc07ef8e1f1b757ccf6fb.tar.bz2 etisnoop-3576bfcd68ff58e022efc07ef8e1f1b757ccf6fb.zip |
Refactor all FIG0/x into separate files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 84f4cf1..0000000 --- a/Makefile +++ /dev/null @@ -1,24 +0,0 @@ - -CXX=g++ - -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) -std=c++11 -Wall -ggdb $(SOURCES) -lfaad -lfec -o etisnoop - -etisnoop-static: libfaad $(SOURCES) $(HEADERS) - $(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 - -.PHONY: tags -tags: - ctags -R . - - -clean: - rm -f etisnoop *.o |