aboutsummaryrefslogtreecommitdiffstats
path: root/etisnoop/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'etisnoop/Makefile')
-rw-r--r--etisnoop/Makefile7
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