diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-11-09 11:33:11 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-11-09 11:33:11 +0100 |
commit | 5e1f053678cf01390a47fa6e99dbe155c1442cf5 (patch) | |
tree | 3a737109557a4fe574e24cf11a0cac7c94c2f069 /etisnoop/Makefile | |
parent | 45339f9c3e92f68d9beffcf58c93ec996ec09f8d (diff) | |
download | mmbtools-aux-5e1f053678cf01390a47fa6e99dbe155c1442cf5.tar.gz mmbtools-aux-5e1f053678cf01390a47fa6e99dbe155c1442cf5.tar.bz2 mmbtools-aux-5e1f053678cf01390a47fa6e99dbe155c1442cf5.zip |
ETISnoop search for firecode
Diffstat (limited to 'etisnoop/Makefile')
-rw-r--r-- | etisnoop/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/etisnoop/Makefile b/etisnoop/Makefile index 4fe3609..f6a68b1 100644 --- a/etisnoop/Makefile +++ b/etisnoop/Makefile @@ -1,10 +1,13 @@ CC=g++ +SOURCES=etisnoop.cpp dabplussnoop.cpp lib_crc.c firecode.c +HEADERS=dabplussnoop.h lib_crc.h firecode.h + all: etisnoop -etisnoop: etisnoop.cpp lib_crc.c lib_crc.h - $(CC) -Wall -ggdb etisnoop.cpp lib_crc.c -o etisnoop +etisnoop: $(SOURCES) $(HEADERS) + $(CC) -Wall -ggdb $(SOURCES) $(HEADERS) -o etisnoop clean: rm -f etisnoop *.o |