diff options
Diffstat (limited to 'etisnoop/Makefile')
-rw-r--r-- | etisnoop/Makefile | 20 |
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 |