aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 3641f944856e2da4fa05a7cb6f83aaf950936c8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
CXX=g++

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

all: etisnoop

etisnoop: $(SOURCES) $(HEADERS)
	$(CXX) -Wall -ggdb $(SOURCES) $(HEADERS) -lfaad -o etisnoop

etisnoop-static: libfaad $(SOURCES) $(HEADERS)
	$(CXX) -Wall -ggdb $(SOURCES) $(HEADERS) -Ifaad2-2.7/include faad2-2.7/libfaad/.libs/libfaad.a -o etisnoop

libfaad:
	make -C ./faad2-2.7

.PHONY: tags
tags:
	ctags -R .


clean:
	rm -f etisnoop *.o