1 2 3 4 5 6 7 8 9 10 11 12 13
CC=g++ SOURCES=etisnoop.cpp dabplussnoop.cpp lib_crc.c firecode.c HEADERS=dabplussnoop.h lib_crc.h firecode.h all: etisnoop etisnoop: $(SOURCES) $(HEADERS) $(CC) -Wall -ggdb $(SOURCES) $(HEADERS) -o etisnoop clean: rm -f etisnoop *.o