aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: f6a68b144e265fc6f4a8430df3fd431c84188e86 (plain)
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