From 639951285591ab6e8d1158e336a3f6c19477cc4f Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Sun, 9 Nov 2014 11:33:11 +0100 Subject: ETISnoop search for firecode --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4fe3609..f6a68b1 100644 --- a/Makefile +++ b/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 -- cgit v1.2.3