diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-11-17 14:03:53 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-11-17 14:03:53 +0100 |
commit | 539829e66bdc38b04eab850bfc0a51e4cc9afb3c (patch) | |
tree | b1f17314da96c0a1bc23821be62e538d8821a332 /etisnoop/Makefile | |
parent | 1653da0d76e06bdf47eda212fa0b35a620f5a982 (diff) | |
download | mmbtools-aux-539829e66bdc38b04eab850bfc0a51e4cc9afb3c.tar.gz mmbtools-aux-539829e66bdc38b04eab850bfc0a51e4cc9afb3c.tar.bz2 mmbtools-aux-539829e66bdc38b04eab850bfc0a51e4cc9afb3c.zip |
ETISnoop Makefile libfaad
Diffstat (limited to 'etisnoop/Makefile')
-rw-r--r-- | etisnoop/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/etisnoop/Makefile b/etisnoop/Makefile index 8ea3c17..baaa49a 100644 --- a/etisnoop/Makefile +++ b/etisnoop/Makefile @@ -6,11 +6,15 @@ HEADERS=dabplussnoop.h lib_crc.h firecode.h faad_decoder.h wavfile.h all: etisnoop +etisnoop: $(SOURCES) $(HEADERS) + $(CC) -Wall -ggdb $(SOURCES) $(HEADERS) -lfaad -o etisnoop + +etisnoop-static: libfaad $(SOURCES) $(HEADERS) + $(CC) -Wall -ggdb $(SOURCES) $(HEADERS) faad2-2.7/libfaad/.libs/libfaad.a -o etisnoop + libfaad: make -C ./faad2-2.7 -etisnoop: libfaad $(SOURCES) $(HEADERS) - $(CC) -Wall -ggdb $(SOURCES) $(HEADERS) faad2-2.7/libfaad/.libs/libfaad.a -o etisnoop clean: rm -f etisnoop *.o |