aboutsummaryrefslogtreecommitdiffstats
path: root/etisnoop/Makefile
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2015-02-14 15:56:38 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2015-02-14 16:01:37 +0100
commit390811ec32742d4af2a48fe265b506185e01b7f4 (patch)
tree9d79e089d5274498b7b4117f870889e5ff0a027f /etisnoop/Makefile
parent0b821b5b63a1cbe2f7780a1312eb98473e220d55 (diff)
downloadmmbtools-aux-390811ec32742d4af2a48fe265b506185e01b7f4.tar.gz
mmbtools-aux-390811ec32742d4af2a48fe265b506185e01b7f4.tar.bz2
mmbtools-aux-390811ec32742d4af2a48fe265b506185e01b7f4.zip
Remove etisnoop
Diffstat (limited to 'etisnoop/Makefile')
-rw-r--r--etisnoop/Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/etisnoop/Makefile b/etisnoop/Makefile
deleted file mode 100644
index 334077b..0000000
--- a/etisnoop/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-
-CC=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
-
-all: etisnoop
-
-etisnoop: $(SOURCES) $(HEADERS)
- $(CC) -Wall -ggdb $(SOURCES) $(HEADERS) -lfaad -o etisnoop
-
-etisnoop-static: libfaad $(SOURCES) $(HEADERS)
- $(CC) -Wall -ggdb $(SOURCES) $(HEADERS) -Ifaad2-2.7/include faad2-2.7/libfaad/.libs/libfaad.a -o etisnoop
-
-libfaad:
- make -C ./faad2-2.7
-
-
-clean:
- rm -f etisnoop *.o