-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
133 lines (118 loc) · 3.98 KB
/
Makefile.am
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
AM_CFLAGS = $(all_includes)
SUBDIRS = src tests
boxingincludedir = $(includedir)/boxing
boxinginclude_HEADERS = \
inc/boxing/filter.h \
inc/boxing/globals.h \
inc/boxing/utils.h \
inc/boxing/config.h \
inc/boxing/stats.h \
inc/boxing/log.h \
inc/boxing/unboxer.h \
inc/boxing/unboxer_utility.h \
inc/boxing/bool.h \
inc/boxing/matrix.h \
inc/boxing/image8.h \
inc/boxing/string.h \
inc/boxing/metadata.h
boxingmathincludedir = $(includedir)/boxing/math
boxingmathinclude_HEADERS = \
inc/boxing/math/crc32.h \
inc/boxing/math/crc64.h \
inc/boxing/math/bitutils.h \
inc/boxing/math/dsp.h \
inc/boxing/math/math.h
boxingcodecsincludedir = $(includedir)/boxing/codecs
boxingcodecsinclude_HEADERS = \
inc/boxing/codecs/packetheader.h \
inc/boxing/codecs/crc32.h \
inc/boxing/codecs/bchcodec.h \
inc/boxing/codecs/codecdispatcher.h \
inc/boxing/codecs/ftfinterleaving.h \
inc/boxing/codecs/codecbase.h \
inc/boxing/codecs/crc64.h \
inc/boxing/codecs/2dpam.h \
inc/boxing/codecs/codec_cb.h \
inc/boxing/codecs/modulator.h \
inc/boxing/codecs/syncpointinserter.h \
inc/boxing/codecs/interleaving.h \
inc/boxing/codecs/symbolconverter.h \
inc/boxing/codecs/cipher.h \
inc/boxing/codecs/reedsolomon.h \
inc/boxing/codecs/ldpccodec.h
unboxercodecsincludedir = $(includedir)/boxing/unboxer
unboxercodecsinclude_HEADERS = \
inc/boxing/unboxer/abstractframeutil.h \
inc/boxing/unboxer/cornermark.h \
inc/boxing/unboxer/sampleutil.h \
inc/boxing/unboxer/syncpoints.h \
inc/boxing/unboxer/histogramutils.h \
inc/boxing/unboxer/frametrackerutil.h \
inc/boxing/unboxer/sampler.h
boxingplatformincludedir = $(includedir)/boxing/platform
boxingplatforminclude_HEADERS = \
inc/boxing/platform/platform.h \
inc/boxing/platform/types.h \
inc/boxing/platform/memory.h
boxingframeincludedir = $(includedir)/boxing/frame
boxingframeinclude_HEADERS = \
inc/boxing/frame/trackercbgpf_1.h \
inc/boxing/frame/tracker.h \
inc/boxing/frame/trackergpf.h \
inc/boxing/frame/trackergpf_1.h
boxinggraphicsincludedir = $(includedir)/boxing/graphics
boxinggraphicsinclude_HEADERS = \
inc/boxing/graphics/painter.h \
inc/boxing/graphics/component.h \
inc/boxing/graphics/image8paintdevice.h \
inc/boxing/graphics/referencepoint.h \
inc/boxing/graphics/genericframefactory.h \
inc/boxing/graphics/genericframe.h \
inc/boxing/graphics/referencebar.h \
inc/boxing/graphics/label.h \
inc/boxing/graphics/paintdevice.h \
inc/boxing/graphics/border.h \
inc/boxing/graphics/metadatabar.h \
inc/boxing/graphics/calibrationbar.h \
inc/boxing/graphics/contentcontainer.h \
inc/boxing/graphics/genericframegpf_1.h
include_HEADERS = \
thirdparty/reedsolomon/rs.h \
thirdparty/reedsolomon/galois_field.h \
thirdparty/ldpc/alloc.h \
thirdparty/ldpc/blockio.h \
thirdparty/ldpc/channel.h \
thirdparty/ldpc/check.h \
thirdparty/ldpc/dec.h \
thirdparty/ldpc/distrib.h \
thirdparty/ldpc/enc.h \
thirdparty/ldpc/intio.h \
thirdparty/ldpc/mod2convert.h \
thirdparty/ldpc/mod2dense.h \
thirdparty/ldpc/mod2sparse.h \
thirdparty/ldpc/open.h \
thirdparty/ldpc/rand.h \
thirdparty/ldpc/rcode.h \
thirdparty/glib/glib.h \
thirdparty/glib/ghash.h \
thirdparty/glib/gvector.h \
thirdparty/glib/glibconfig.h \
thirdparty/glib/gtree.h \
thirdparty/glib/gmacros.h \
thirdparty/glib/gnode.h \
thirdparty/glib/glist.h \
thirdparty/glib/g_variant.h \
thirdparty/glib/gutils.h \
thirdparty/glib/gversionmacros.h \
thirdparty/glib/gtypes.h
EXTRA_DIST = README.org doc autogen.sh
# Create documentation
README.md : README.org
emacs README.org --batch -f org-md-export-to-markdown
doc : src doxygen.dox
doxygen ${top_srcdir}/doxygen.dox
dist_doc_DATA = README.md doxygen.dox
clean-local:
rm -rf doc
# Clean files generated by doxygen:
DISTCLEANFILES = unboxingdata.tag