Reduce variables scope
[dpkg.git] / Makefile.am
blob5e824cfe021c5aba48457341fd332192ad289943
1 ## Process this file with automake to produce Makefile.in
3 if BUILD_DSELECT
4   MAYBE_DSELECT = dselect
5 endif
7 SUBDIRS = \
8         lib \
9         src \
10         utils \
11         $(MAYBE_DSELECT) \
12         scripts \
13         po \
14         man \
15         # EOL
17 ACLOCAL_AMFLAGS = -I m4
19 aclocaldir = $(datadir)/aclocal
21 dist_aclocal_DATA = \
22         m4/dpkg-arch.m4 \
23         m4/dpkg-build.m4 \
24         m4/dpkg-compiler.m4 \
25         m4/dpkg-coverage.m4 \
26         m4/dpkg-funcs.m4 \
27         m4/dpkg-headers.m4 \
28         m4/dpkg-libs.m4 \
29         m4/dpkg-linker.m4 \
30         m4/dpkg-progs.m4 \
31         m4/dpkg-types.m4 \
32         m4/dpkg-unicode.m4 \
33         # EOL
35 dist_pkgdata_DATA = \
36         data/pie-compile.specs \
37         data/pie-link.specs \
38         data/no-pie-compile.specs \
39         data/no-pie-link.specs \
40         data/cputable \
41         data/ostable \
42         data/abitable \
43         data/tupletable \
44         # EOL
46 dist_doc_DATA = \
47         doc/README.api \
48         doc/README.feature-removal-schedule \
49         # EOL
51 docspecdir = $(docdir)/spec
53 dist_docspec_DATA = \
54         doc/spec/frontend-api.txt \
55         doc/spec/protected-field.txt \
56         doc/spec/rootless-builds.txt \
57         doc/spec/triggers.txt \
58         # EOL
60 EXTRA_DIST = \
61         .gitlab-ci.yml \
62         .mailmap \
63         ChangeLog.old \
64         README.l10n \
65         autogen \
66         build-aux/gen-changelog \
67         build-aux/get-version \
68         build-aux/lcov-inject \
69         build-aux/run-script \
70         build-aux/test-runner \
71         doc/coding-style.txt \
72         debian/README.bug-usertags \
73         debian/bug-script \
74         debian/changelog \
75         debian/control \
76         debian/copyright \
77         debian/dpkg-dev.docs \
78         debian/dpkg-dev.install \
79         debian/dpkg-dev.manpages \
80         debian/dpkg.alternatives.logrotate \
81         debian/dpkg.cfg \
82         debian/dpkg.cron.daily \
83         debian/dpkg.docs \
84         debian/dpkg.dpkg-db-backup.service \
85         debian/dpkg.dpkg-db-backup.timer \
86         debian/dpkg.install \
87         debian/dpkg.manpages \
88         debian/dpkg.postinst \
89         debian/dpkg.postrm \
90         debian/dpkg.logrotate \
91         debian/dpkg.lintian-overrides \
92         debian/dpkg.lintian-profile \
93         debian/dselect.cfg \
94         debian/dselect.docs \
95         debian/dselect.install \
96         debian/dselect.lintian-overrides \
97         debian/dselect.manpages \
98         debian/dselect.postrm \
99         debian/libdpkg-dev.install \
100         debian/libdpkg-perl.install \
101         debian/source/format \
102         debian/source/lintian-overrides \
103         debian/not-installed \
104         debian/rules \
105         debian/shlibs.default \
106         debian/shlibs.override \
107         debian/tests/control \
108         debian/tests/test-func \
109         debian/tests/test-func-root \
110         debian/tests/test-not-root \
111         debian/tests/test-root \
112         po/its/polkit.its \
113         po/its/polkit.loc \
114         tests \
115         $(test_scripts) \
116         $(test_data) \
117         # EOL
119 .PHONY: doc
121 doc: doc/Doxyfile
122         $(DOXYGEN) doc/Doxyfile
124 doc-clean:
125         rm -rf doc/html/
127 # Code coverage support
129 .PHONY: coverage coverage-clean
131 if COVERAGE_ENABLED
132 LCOV_OPTS = --quiet --rc geninfo_checksum=1 --rc lcov_branch_coverage=1
133 LCOV_CAPTURE_OPTS = $(LCOV_OPTS) --no-recursion \
134         --directory $(top_builddir)/lib/dpkg \
135         --directory $(top_builddir)/src/common \
136         --directory $(top_builddir)/src/deb \
137         --directory $(top_builddir)/src/split \
138         --directory $(top_builddir)/src/divert \
139         --directory $(top_builddir)/src/query \
140         --directory $(top_builddir)/src/trigger \
141         --directory $(top_builddir)/src/statoverride \
142         --directory $(top_builddir)/src/main \
143         --directory $(top_builddir)/utils \
144         # EOL
145 LCOV_INJECT = $(PERL) -i $(top_srcdir)/build-aux/lcov-inject
147 coverage: all
148         : # Remove coverage data from any previous run
149         rm -f *.lcov
150         find -name '*.gcda' -o -name '*.gcov' | xargs rm -f
152         : # Initialize data
153         $(LCOV) $(LCOV_CAPTURE_OPTS) --capture --initial \
154           --output-file dpkg_base.lcov
155         : # Run test cases
156         $(MAKE) -C lib/dpkg check
157         $(MAKE) -C src check
158         $(MAKE) -C utils check
159         : # Merge test coverage data
160         $(LCOV) $(LCOV_CAPTURE_OPTS) --capture \
161           --output-file dpkg_test.lcov
162         $(LCOV) $(LCOV_OPTS) \
163           --add-tracefile dpkg_base.lcov \
164           --add-tracefile dpkg_test.lcov \
165           --output-file dpkg_merge.lcov
166         $(LCOV) $(LCOV_OPTS) --remove dpkg_merge.lcov '/usr/include/*' \
167           --output-file dpkg.lcov
168         : # Generate reports
169         $(LCOV) $(LCOV_OPTS) --list dpkg.lcov
170         $(LCOV_GENHTML) $(LCOV_OPTS) \
171           --legend --title "dpkg $(VERSION) C code coverage" \
172           --output-directory doc/coverage dpkg.lcov
174         $(MAKE) -C scripts $@
176         : # XXX: Inject perl coverage into lcov index files. This is a fragile
177         : # hack which might break depending on the html output generated.
178         $(LCOV_INJECT) doc/coverage/index-sort-b.html
179         $(LCOV_INJECT) doc/coverage/index-sort-f.html
180         $(LCOV_INJECT) doc/coverage/index-sort-l.html
181         $(LCOV_INJECT) doc/coverage/index.html
183 coverage-clean:
184         rm -rf doc/coverage/
185         find -name '*.gcno' -o -name '*.gcda' -o \
186              -name '*.gcov' -o -name '*.lcov' | xargs rm -f
187         $(MAKE) -C scripts $@
188 else
189 coverage:
190         @echo "Need to reconfigure with --enable-coverage"
192 coverage-clean:
193 endif
195 test_scripts = \
196         t/po.t \
197         t/pod.t \
198         t/pod-spell.t \
199         t/pod-coverage.t \
200         t/synopsis.t \
201         t/minimum-version.t \
202         t/module-version.t \
203         t/syntax.t \
204         t/strict.t \
205         t/critic.t \
206         t/codespell.t \
207         t/shellcheck.t \
208         t/cppcheck.t \
209         # EOL
211 test_data = \
212         t/codespell/stopwords \
213         t/cppcheck/cppcheck.supp \
214         t/critic/perlcriticrc \
215         # EOL
217 # We need to use absolute paths here due to strict.t invoking a sub-perl,
218 # while changing dir to source dir on out-of-tree builds.
219 TEST_ENV_VARS = \
220         DPKG_DATADIR=$(abs_top_srcdir)/data \
221         # EOL
223 include $(top_srcdir)/build-aux/tap.am
225 check-local: tap-check
227 .PHONY: update-po
229 update-po:
230         $(MAKE) -C po update-po
231         $(MAKE) -C scripts/po update-po
232         $(MAKE) -C dselect/po update-po
233         $(MAKE) -C man update-po
235 include $(top_srcdir)/build-aux/cpan.am
237 # If we create the dist tarball from the git repository, make sure
238 # that we're not forgetting some files, and we are not storing any symlink
239 # in the repository (except for the origins/default one) as those degrade
240 # to regular files due to automake telling tar to dereference them.
241 dist-hook:
242         echo $(VERSION) >$(distdir)/.dist-version
243         if [ -e .git ]; then \
244           for file in `git ls-tree -r HEAD | grep ^12 | grep -v t/origins/default`; do \
245             echo "$$file is a symlink packed as a file on the dist tar" >&2 ; \
246             exit 1 ; \
247           done ; \
248           for file in `git ls-files | grep -vE '\.git(ignore|-blame)'`; do \
249             if [ ! -e "$(distdir)/$$file" ]; then \
250               echo "$$file is missing in $(distdir)" >&2 ; \
251               exit 1 ; \
252             fi ; \
253           done ; \
254           XDG_CONFIG_HOME= HOME= \
255           git log -C --stat 1.15.0.. >$(distdir)/ChangeLog; \
256         fi
258 clean-local: doc-clean coverage-clean tap-clean