blob: 231ab999d0718c72cf15a593a02a60b4d94d1ca0 (
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
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
## Process this file with automake to produce Makefile.in
if BUILD_DSELECT
MAYBE_DSELECT = dselect
endif
SUBDIRS = \
lib \
dpkg-deb \
dpkg-split \
src \
utils \
$(MAYBE_DSELECT) \
scripts \
t-func \
po \
man
ACLOCAL_AMFLAGS = -I m4
dist_pkgdata_DATA = \
data/pie-compile.specs \
data/pie-link.specs \
data/no-pie-compile.specs \
data/no-pie-link.specs \
data/cputable \
data/ostable \
data/abitable \
data/tupletable \
$(nil)
EXTRA_DIST = \
.gitlab-ci.yml \
.mailmap \
ChangeLog.old \
README.l10n \
autogen \
get-version \
run-script \
doc/README.api \
doc/README.feature-removal-schedule \
doc/coding-style.txt \
doc/frontend.txt \
doc/lcov-inject.pl \
doc/rootless-builds.txt \
doc/triggers.txt \
debian/bug-script \
debian/changelog \
debian/compat \
debian/control \
debian/copyright \
debian/dpkg-dev.docs \
debian/dpkg-dev.install \
debian/dpkg-dev.manpages \
debian/dpkg.alternatives.logrotate \
debian/dpkg.cfg \
debian/dpkg.cron.daily \
debian/dpkg.docs \
debian/dpkg.install \
debian/dpkg.manpages \
debian/dpkg.postinst \
debian/dpkg.postrm \
debian/dpkg.logrotate \
debian/dpkg.lintian-overrides \
debian/dpkg.lintian-profile \
debian/dselect.cfg \
debian/dselect.docs \
debian/dselect.install \
debian/dselect.manpages \
debian/libdpkg-dev.docs \
debian/libdpkg-dev.install \
debian/libdpkg-perl.docs \
debian/libdpkg-perl.install \
debian/source/format \
debian/usertags \
debian/rules \
debian/shlibs.default \
debian/shlibs.override \
debian/tests/control \
debian/tests/test-not-root \
debian/tests/test-root \
po/its/polkit.its \
po/its/polkit.loc \
$(test_scripts) \
$(test_data) \
$(nil)
.PHONY: doc
doc: doc/Doxyfile
$(DOXYGEN) doc/Doxyfile
doc-clean:
rm -rf doc/html/
# Code coverage support
.PHONY: coverage coverage-clean
if COVERAGE_ENABLED
LCOV_OPTS = -q --rc geninfo_checksum=1 --rc lcov_branch_coverage=1
LCOV_CAPTURE_OPTS = $(LCOV_OPTS) --no-recursion \
-d $(top_builddir)/lib/dpkg \
-d $(top_builddir)/src \
-d $(top_builddir)/utils
LCOV_INJECT = $(PERL) -i $(top_srcdir)/doc/lcov-inject.pl
coverage: all
: # Remove coverage data from any previous run
rm -f *.lcov
find -name '*.gcda' -o -name '*.gcov' | xargs rm -f
: # Initialize data
$(LCOV) $(LCOV_CAPTURE_OPTS) -c -o dpkg_base.lcov -i
: # Run test cases
$(MAKE) -C lib/dpkg check
$(MAKE) -C src check
$(MAKE) -C utils check
: # Merge test coverage data
$(LCOV) $(LCOV_CAPTURE_OPTS) -c -o dpkg_test.lcov
$(LCOV) $(LCOV_OPTS) -a dpkg_base.lcov -a dpkg_test.lcov \
-o dpkg_merge.lcov
$(LCOV) $(LCOV_OPTS) -r dpkg_merge.lcov '/usr/include/*' -o dpkg.lcov
: # Generate reports
$(LCOV) $(LCOV_OPTS) -l dpkg.lcov
$(LCOV_GENHTML) $(LCOV_OPTS) \
--legend --title "dpkg $(VERSION) C code coverage" \
-o doc/coverage dpkg.lcov
$(MAKE) -C scripts $@
: # XXX: Inject perl coverage into lcov index files. This is a fragile
: # hack which might break depending on the html output generated.
$(LCOV_INJECT) doc/coverage/index-sort-b.html
$(LCOV_INJECT) doc/coverage/index-sort-f.html
$(LCOV_INJECT) doc/coverage/index-sort-l.html
$(LCOV_INJECT) doc/coverage/index.html
coverage-clean:
rm -rf doc/coverage/
find -name '*.gcno' -o -name '*.gcda' -o \
-name '*.gcov' -o -name '*.lcov' | xargs rm -f
$(MAKE) -C scripts $@
else
coverage:
@echo "Need to reconfigure with --enable-coverage"
coverage-clean:
endif
test_scripts = \
t/po.t \
t/pod.t \
t/pod-spell.t \
t/pod-coverage.t \
t/synopsis.t \
t/minimum-version.t \
t/module-version.t \
t/syntax.t \
t/strict.t \
t/critic.t \
t/codespell.t \
t/shellcheck.t \
t/cppcheck.t \
$(nil)
test_data = \
t/critic/perlcriticrc \
t/codespell/stopwords \
t/cppcheck/cppcheck.supp \
$(nil)
# We need to use absolute paths here due to strict.t invoking a sub-perl,
# while changing dir to source dir on out-of-tree builds.
TEST_ENV_VARS = \
DPKG_DATADIR=$(abs_top_srcdir)/data \
$(nil)
include $(top_srcdir)/check.am
.PHONY: update-po
update-po:
$(MAKE) -C po update-po
$(MAKE) -C scripts/po update-po
$(MAKE) -C dselect/po update-po
$(MAKE) -C man update-po
include $(top_srcdir)/cpan.am
# If we create the dist tarball from the git repository, make sure
# that we're not forgetting some files...
dist-hook: dist-cpan
echo $(VERSION) >$(distdir)/.dist-version
if [ -e .git ]; then \
for file in `git ls-files | grep -v .gitignore`; do \
if [ ! -e "$(distdir)/$$file" ]; then \
echo "$$file is missing in $(distdir)" >&2 ; \
exit 1 ; \
fi ; \
done ; \
XDG_CONFIG_HOME= HOME= \
git log -C --stat 1.15.0.. >$(distdir)/ChangeLog; \
fi
clean-local: doc-clean coverage-clean check-clean
|