aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 2b710f34647b5c506a2463b71454366b33db3f1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CC=g++

SOURCES=etisnoop.cpp dabplussnoop.cpp lib_crc.c firecode.c faad_decoder.cpp
HEADERS=dabplussnoop.h lib_crc.h firecode.h faad_decoder.h

all: etisnoop

libfaad:
	make -C ./faad2-2.7

etisnoop: libfaad $(SOURCES) $(HEADERS)
	$(CC) -Wall -ggdb $(SOURCES) $(HEADERS) faad2-2.7/libfaad/.libs/libfaad.a -o etisnoop

clean:
	rm -f etisnoop *.o