blob: bc09713751d6924574f596f2427f1396d29be0b5 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = subdir-objects
if IS_GIT_REPO
GITVERSION_FLAGS = -DGITVERSION="\"`git describe --dirty`\""
else
GITVERSION_FLAGS =
endif
AM_CPPFLAGS = -g -O2 $(GITVERSION_FLAGS)
etisnoop_SOURCES = dabplussnoop.cpp dabplussnoop.hpp \
etiinput.cpp etiinput.hpp \
etisnoop.cpp \
faad_decoder.cpp faad_decoder.hpp \
fig0_0.cpp \
fig0_10.cpp \
fig0_11.cpp \
fig0_13.cpp \
fig0_14.cpp \
fig0_16.cpp \
fig0_17.cpp \
fig0_18.cpp \
fig0_19.cpp \
fig0_1.cpp \
fig0_21.cpp \
fig0_22.cpp \
fig0_24.cpp \
fig0_25.cpp \
fig0_26.cpp \
fig0_27.cpp \
fig0_28.cpp \
fig0_2.cpp \
fig0_31.cpp \
fig0_3.cpp \
fig0_5.cpp \
fig0_6.cpp \
fig0_8.cpp \
fig0_9.cpp \
fig1.cpp \
figs.cpp figs.hpp \
firecode.c firecode.h \
lib_crc.c lib_crc.h \
repetitionrate.cpp repetitionrate.hpp \
rsdecoder.cpp rsdecoder.hpp \
tables.cpp tables.hpp \
utils.cpp utils.hpp \
watermarkdecoder.hpp \
wavfile.c wavfile.h
bin_PROGRAMS = etisnoop$(EXEEXT)
EXTRA_DIST = \
$(top_srcdir)/bootstrap.sh \
$(top_srcdir)/LICENCE \
$(top_srcdir)/README.md \
$(top_srcdir)/remove-duplicate-frames.py
|