forked from didier-barvaux/rohc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
184 lines (164 loc) · 5.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
################################################################################
# Name : Makefile
# Author : Didier Barvaux <didier.barvaux@toulouse.viveris.com>
# Description: create the ROHC libraries and the test application
################################################################################
if ROHC_TESTS
TESTS_DIR = test
else
TESTS_DIR =
endif
if ROHC_LINUX_MODULE
LINUX_MODULE_DIR = linux
else
LINUX_MODULE_DIR =
endif
if BUILD_DOC
DOC_DIR = doc
else
DOC_DIR =
endif
if BUILD_EXAMPLES
EXAMPLES_DIR = examples
else
EXAMPLES_DIR =
endif
SUBDIRS = \
src \
$(TESTS_DIR) \
$(LINUX_MODULE_DIR) \
app \
$(DOC_DIR) \
$(EXAMPLES_DIR) \
contrib
dist_doc_DATA = \
README \
README.md \
INSTALL \
INSTALL.md \
COPYING \
AUTHORS \
AUTHORS.md \
ChangeLog
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = rohc.pc
# directory for dist and distcheck
distdir = $(PACKAGE)-$(VERSION)$(PACKAGE_REVNO)
# configure options for distcheck
DISTCHECK_CONFIGURE_FLAGS = \
--enable-fail-on-warning \
--enable-fortify-sources \
--enable-app-performance \
--enable-app-sniffer \
--enable-rohc-tests \
--disable-doc \
--disable-examples
# extra files for releases
EXTRA_DIST = \
autogen.sh \
git_ref \
test/report_code_coverage.sh
# other extra files for releases
dist-hook:
find $(distdir)/test/non_regression/rfc3095/inputs \
$(distdir)/test/non_regression/rfc6846/inputs \
$(distdir)/test/non_regression/rfc5225/inputs \
-type f -and \
-not -name source.pcap -and \
-not -name rohc_maxcontexts0_wlsb4_smallcid.pcap -and \
-not -name rohc_maxcontexts0_wlsb4_largecid.pcap -and \
-not -name rohc_maxcontexts0_wlsb64_smallcid.pcap -and \
-not -name rohc_maxcontexts0_wlsb64_largecid.pcap -and \
-not -name rohc_maxcontexts1_wlsb4_smallcid.pcap -and \
-not -name rohc_maxcontexts1_wlsb4_largecid.pcap -and \
-not -name rohc_maxcontexts1_wlsb64_smallcid.pcap -and \
-not -name rohc_maxcontexts1_wlsb64_largecid.pcap -and \
-not -name rohcv2_maxcontexts0_wlsb4_smallcid.pcap -and \
-not -name rohcv2_maxcontexts0_wlsb4_largecid.pcap -and \
-not -name rohcv2_maxcontexts0_wlsb64_smallcid.pcap -and \
-not -name rohcv2_maxcontexts0_wlsb64_largecid.pcap -and \
-not -name rohcv2_maxcontexts1_wlsb4_smallcid.pcap -and \
-not -name rohcv2_maxcontexts1_wlsb4_largecid.pcap -and \
-not -name rohcv2_maxcontexts1_wlsb64_smallcid.pcap -and \
-not -name rohcv2_maxcontexts1_wlsb64_largecid.pcap -and \
-not -name description -and \
-not -name rohc_maxcontexts0_wlsb4_smallcid.sizes -and \
-not -name rohc_maxcontexts0_wlsb4_largecid.sizes -and \
-not -name rohc_maxcontexts0_wlsb64_smallcid.sizes -and \
-not -name rohc_maxcontexts0_wlsb64_largecid.sizes -and \
-not -name rohc_maxcontexts1_wlsb4_smallcid.sizes -and \
-not -name rohc_maxcontexts1_wlsb4_largecid.sizes -and \
-not -name rohc_maxcontexts1_wlsb64_smallcid.sizes -and \
-not -name rohc_maxcontexts1_wlsb64_largecid.sizes -and \
-not -name rohcv2_maxcontexts0_wlsb4_smallcid.sizes -and \
-not -name rohcv2_maxcontexts0_wlsb4_largecid.sizes -and \
-not -name rohcv2_maxcontexts0_wlsb64_smallcid.sizes -and \
-not -name rohcv2_maxcontexts0_wlsb64_largecid.sizes -and \
-not -name rohcv2_maxcontexts1_wlsb4_smallcid.sizes -and \
-not -name rohcv2_maxcontexts1_wlsb4_largecid.sizes -and \
-not -name rohcv2_maxcontexts1_wlsb64_smallcid.sizes -and \
-not -name rohcv2_maxcontexts1_wlsb64_largecid.sizes -and \
-not -name README \
-exec $(RM) \{\} \;
if CODE_COVERAGE
TESTS_CODE_COVERAGE = test/report_code_coverage.sh
endif
TESTS = $(TESTS_CODE_COVERAGE)
distclean-local:
$(RM) output.zcov
$(RM) -r coverage-report/
# run cppcheck on all sources, apps and tests
cppcheck:
$(AM_V_GEN)cppcheck \
--quiet \
--enable=warning,performance,portability,information,unusedFunction,missingInclude \
--error-exitcode=2 \
--std=c89 --std=c99 --std=c11 \
-I src/common/protocols/ -I src/common/ \
-I src/comp/schemes/ -I src/comp/ \
-I src/decomp/schemes/ -I src/decomp/ \
-I src/ \
-I test/ \
-I /usr/include/ \
-i linux/ \
-D__clang_analyzer__ \
-DHAVE_PCAP_PCAP_H \
-DPY_VERSION_HEX=0x02000001 \
-D_ENDIAN_H \
-DHAVE_CMOCKA_RUN_GROUP_TESTS=1 \
--suppress=*:contrib/python/rohc_wrap.c \
--suppress=unusedStructMember:src/comp/c_tcp.c:184 \
--suppress=unusedStructMember:src/comp/c_tcp.c:206 \
--suppress=unusedStructMember:src/comp/c_tcp.c:241 \
--suppress=unusedStructMember:src/comp/c_tcp_opts_list.c:46 \
--suppress=unusedStructMember:src/comp/c_tcp_opts_list.c:47 \
--suppress=unusedStructMember:src/comp/c_tcp_opts_list.c:48 \
--suppress=useClosedFile:test/non_regression/test_non_regression_kernel.c:589 \
--suppress=useClosedFile:test/non_regression/test_non_regression_kernel.c:590 \
--suppress=useClosedFile:test/non_regression/test_non_regression_kernel.c:591 \
--suppress=useClosedFile:test/non_regression/test_non_regression_kernel.c:592 \
--suppress=unusedFunction:src/decomp/schemes/test/test_wlsb.c:40 \
--suppress=*:app/performance/rohc_gen_stream.c:218 \
.
# run GNU complexity on all sources and apps, but not tests
complexity:
$(AM_V_GEN)complexity --threshold=20 --horrid-threshold=33 \
`find src/ app/ -name \*.c -or -name \*.h`
# run Linux checkpatch.pl script on kernel modules, but ignore warnings about
# EXPORT_SYMBOL(foo) not following the function declaration because I don't
# want to duplicate function declarations in lib and kmod.
checkpatch:
$(AM_V_GEN)/usr/src/linux/scripts/checkpatch.pl \
--ignore EXPORT_SYMBOL \
--file `find linux/ -name \*.h -or -name \*.c`
# check spelling mistakes with codespell in source files, but also in Markdown
# files and man pages
# https://github.com/lucasdemarchi/codespell
codespell:
$(AM_V_GEN)codespell \
`find . -name \*.md -or -name \*.7.in -or -name ChangeLog -or -name README` \
`find . -name configure.ac -or -name Makefile.am` \
`find . -name \*.c -and -not -name rohc_wrap.c` \
`find . -name \*.h`
# run all Q&A tests
qa: cppcheck complexity checkpatch codespell