]> git.saurik.com Git - apt.git/blame - debian/rules
* apt-pkg/cacheset.cc:
[apt.git] / debian / rules
CommitLineData
2d18d44e
AL
1#!/usr/bin/make -f
2# Made with the aid of dh_make, by Craig Small
3# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
4# Some lines taken from debmake, by Christoph Lameter.
2d18d44e 5
045ba613
AL
6export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
7export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
cb1a690c 8export DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
045ba613
AL
9
10# FOR AUTOCONF 2.52 AND NEWER ONLY
11ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
12 confflags += --build $(DEB_HOST_GNU_TYPE)
13else
14 confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
15endif
16
b2e465d6 17# See below
0b3e8849 18-include build/environment.mak
b2e465d6 19
39151234
DK
20ifneq (,$(shell which dpkg-buildflags))
21 export CXXFLAGS = $(shell dpkg-buildflags --get CXXFLAGS)
e5379452
DK
22 export LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS)
23 export CPPFLAGS = $(shell dpkg-buildflags --get CPPFLAGS)
bab7c2cb 24else
39151234
DK
25 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
26 export CXXFLAGS = -O0 -g -Wall
27 else
28 export CXXFLAGS = -O2 -g -Wall
29 endif
bab7c2cb
AL
30endif
31
b2e465d6
AL
32# Default rule
33build:
34
4d745d64 35PKG=apt
a789b983 36DEB_BUILD_PROG:=debuild --preserve-envvar PATH --preserve-envvar CCACHE_DIR -us -uc $(DEB_BUILD_PROG_OPTS)
3a42cc3c 37
cf6371d0
AL
38# Determine the build directory to use
39BASE=.
40ifdef BUILD
41BUILD_POSSIBLE := $(BUILD) $(BASE)/$(BUILD)
42else
70371bc8 43BUILD_POSSIBLE := $(BASE) $(BASE)/build-$(shell uname --machine) $(BASE)/build
cf6371d0
AL
44endif
45BUILDX:= $(foreach i,$(BUILD_POSSIBLE),$(wildcard $(i)/environment.mak*))
46BUILDX:= $(patsubst %/,%,$(firstword $(dir $(BUILDX))))
47override BLD := $(BUILDX)
48
b024fa25
AL
49ifeq ($(words $(BLD)),0)
50override BLD := ./build
51endif
52
b2e465d6 53# APT Programs in apt-utils
ff859c7f 54APT_UTILS=ftparchive sortpkgs extracttemplates internal-solver
b2e465d6 55
2d18d44e
AL
56# Uncomment this to turn on verbose mode.
57#export DH_VERBOSE=1
58
d153f53f 59# Find the libapt-pkg major version for use in other control files
23d84658 60include buildlib/libversion.mak
a5b7cd82 61
7eee083a
MV
62# Determine which library package names to use
63LIBAPT_PKG=libapt-pkg$(LIBAPTPKG_MAJOR)
64LIBAPT_INST=libapt-inst$(LIBAPTINST_MAJOR)
65
149daa16
DK
66# do not fail as we are just experimenting with symbol files for now
67export DPKG_GENSYMBOLS_CHECK_LEVEL=0
201eaabd 68
70371bc8
DK
69build: build/build-stamp
70build-doc: build/build-doc-stamp
b2e465d6
AL
71
72# Note that this is unconditionally done first as part of loading environment.mak
73# The true is needed to force make to reload environment.mak after running
74# configure-stamp. Otherwise we can get stale or invalid, or missing config data.
75build/environment.mak: build/configure-stamp
76 @true
201eaabd 77
b2e465d6
AL
78configure: configure.in
79build/configure-stamp: configure
2d18d44e 80 dh_testdir
2ee6f3cb 81 -mkdir build
9b2e67eb 82 cp COPYING debian/copyright
e5379452 83 cd build && CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" CPPFLAGS="$(CPPFLAGS)" ../configure $(confflags)
b2e465d6 84 touch $@
0b5c85b5 85
b2e465d6 86build/build-stamp: build/configure-stamp
2d18d44e 87 # Add here commands to compile the package.
16c76dd2 88 $(MAKE) binary
84736cfa
MV
89 # compat symlink for the locale split
90 mkdir -p build/usr/share
91 cd build/usr/share && ln -f -s ../../locale .
afd7b358 92 # compile and run tests
224bdefc 93ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
6e08a00f 94 $(MAKE) test
224bdefc
DK
95else
96 @echo "Tests DISABLED"
97endif
16c76dd2
AL
98 touch $@
99
100build/build-doc-stamp: build/configure-stamp
101 # Add here commands to compile the package.
102 $(MAKE) doc
cf58a7e1 103 touch $@
2d18d44e
AL
104
105clean:
106 dh_testdir
e184b9df 107
70371bc8 108 [ ! -f Makefile ] || $(MAKE) clean distclean
2d18d44e 109 rm -rf build
cb1a690c
MV
110 rm -f debian/$(LIBAPT_PKG).install debian/$(LIBAPT_INST).install \
111 debian/libapt-pkg-dev.install
201eaabd 112
cb1a690c
MV
113debian/%.install: debian/%.install.in
114 sed 's/@DEB_HOST_MULTIARCH@/$(DEB_HOST_MULTIARCH)/g' $< > $@
115
386566e3 116binary-indep: apt-doc libapt-pkg-doc
2d18d44e 117# Build architecture-independent files here.
149daa16 118libapt-pkg-doc: build-doc
c64bcd92
AL
119 dh_testdir -p$@
120 dh_testroot -p$@
af7a92c3 121 dh_prep -p$@
c64bcd92 122 dh_installdirs -p$@
3a42cc3c
AL
123#
124# libapt-pkg-doc install
70371bc8
DK
125#
126 dh_installdocs -p$@ $(BLD)/docs/design* \
127 $(BLD)/docs/dpkg-tech* \
128 $(BLD)/docs/files* \
129 $(BLD)/docs/method* \
130 doc/libapt-pkg2_to_3.txt \
d1aa9162 131 doc/style.txt \
dc1e2a06 132 $(BLD)/doc/doxygen/html
c64bcd92 133 dh_installexamples -p$@
c64bcd92 134
c64bcd92
AL
135 dh_installchangelogs -p$@
136 dh_strip -p$@
137 dh_compress -p$@
138 dh_fixperms -p$@
c64bcd92 139 dh_installdeb -p$@
782486e8 140 dh_gencontrol -p$@
c64bcd92
AL
141 dh_md5sums -p$@
142 dh_builddeb -p$@
2d18d44e 143
16c76dd2
AL
144apt-doc: build-doc
145 dh_testdir -p$@
146 dh_testroot -p$@
af7a92c3 147 dh_prep -p$@
16c76dd2
AL
148#
149# apt-doc install
150#
151 # Copy the guides
70371bc8
DK
152 dh_installdocs -p$@ $(BLD)/docs/guide*.text \
153 $(BLD)/docs/guide*.html \
154 $(BLD)/docs/offline*.text \
155 $(BLD)/docs/offline*.html
16c76dd2
AL
156 dh_installchangelogs -p$@
157 dh_compress -p$@
158 dh_fixperms -p$@
159 dh_installdeb -p$@
160 dh_gencontrol -p$@
161 dh_md5sums -p$@
162 dh_builddeb -p$@
163
164
2d18d44e 165
3a42cc3c 166# Build architecture-dependent files here.
3a42cc3c 167
7eee083a 168binary-arch: $(LIBAPT_PKG) $(LIBAPT_INST) apt libapt-pkg-dev apt-utils apt-transport-https
2a52e8c5 169apt_MANPAGES = apt-cache apt-cdrom apt-config apt-get apt-key apt-mark apt-secure apt apt.conf apt_preferences sources.list
149daa16 170apt: build build-doc
c64bcd92
AL
171 dh_testdir -p$@
172 dh_testroot -p$@
af7a92c3 173 dh_prep -p$@
503a2291 174 dh_installdirs -p$@
3a42cc3c
AL
175#
176# apt install
177#
9d2938d4 178 cp debian/apt.conf.autoremove debian/$@/etc/apt/apt.conf.d/01autoremove
2d18d44e 179
be2d3759
MV
180 # make rosetta happy and remove pot files in po/ (but leave stuff
181 # in po/domains/* untouched) and cp *.po into each domain dir
182 rm -f build/po/*.pot
183 rm -f po/*.pot
184
2cf8c58b
DK
185 dh_install -p$@ --sourcedir=$(BLD)
186
187 # Remove the bits that are in apt-utils
7f471354 188 rm $(addprefix debian/$@/usr/bin/apt-,$(APT_UTILS) dump-solver)
2cf8c58b
DK
189
190 # https has its own package
191 rm debian/$@/usr/lib/apt/methods/https
192
3f599bb7 193 # move the mirror failure script in place
23c5897c
MV
194 #mv debian/$@/usr/bin/apt-report-mirror-failure \
195 # debian/$@/usr/lib/apt/apt-report-mirror-failure \
3f599bb7 196
304c041b 197 dh_bugfiles -p$@
063a17d7 198 dh_lintian -p$@
3fb71b27 199 dh_installexamples -p$@ $(BLD)/docs/examples/*
2a52e8c5 200 dh_installman -p$@ $(wildcard $(patsubst %,doc/%.[158],$(apt_MANPAGES)) $(patsubst %,doc/*/%.*.[158],$(apt_MANPAGES)))
0c132682 201 dh_installcron -p$@
9e980be8 202 dh_installdocs -p$@
c64bcd92 203 dh_installchangelogs -p$@
2cf8c58b 204 dh_installlogrotate -p$@
c64bcd92
AL
205 dh_strip -p$@
206 dh_compress -p$@
207 dh_fixperms -p$@
c64bcd92 208 dh_installdeb -p$@
bd5e34e8 209 dh_shlibdeps -p$@
782486e8 210 dh_gencontrol -p$@
c64bcd92
AL
211 dh_md5sums -p$@
212 dh_builddeb -p$@
213
cb1a690c 214libapt-pkg-dev: build debian/libapt-pkg-dev.install
c64bcd92
AL
215 dh_testdir -p$@
216 dh_testroot -p$@
af7a92c3 217 dh_prep -p$@
c64bcd92
AL
218 dh_installdirs -p$@
219#
220# libapt-pkg-dev install
221#
2cf8c58b 222 dh_install -p$@ --sourcedir=$(BLD)
c64bcd92 223 dh_installdocs -p$@
c64bcd92
AL
224 dh_installchangelogs -p$@
225 dh_strip -p$@
226 dh_compress -p$@
227 dh_fixperms -p$@
c64bcd92 228 dh_installdeb -p$@
ceab242d 229 dh_gencontrol -p$@ -- -Vlibapt-pkg-name=$(LIBAPT_PKG) -Vlibapt-inst-name=$(LIBAPT_INST)
b2e465d6
AL
230 dh_md5sums -p$@
231 dh_builddeb -p$@
232
2a52e8c5 233apt-utils_MANPAGES = apt-sortpkgs apt-ftparchive apt-extracttemplates
149daa16 234apt-utils: build
b2e465d6
AL
235 dh_testdir -p$@
236 dh_testroot -p$@
af7a92c3 237 dh_prep -p$@
b2e465d6
AL
238 dh_installdirs -p$@
239
b2e465d6 240 cp $(addprefix $(BLD)/bin/apt-,$(APT_UTILS)) debian/$@/usr/bin/
66b6fe05 241 cp $(BLD)/bin/apt-dump-solver debian/$@/usr/lib/apt/solvers/dump
2cf8c58b
DK
242
243 dh_install -p$@ --sourcedir=$(BLD)
66b6fe05 244 dh_link -p$@
b2e465d6 245 dh_installdocs -p$@
53cd7e2b 246 dh_installexamples -p$@
201eaabd 247
b2e465d6 248 # Install the man pages..
2a52e8c5 249 dh_installman -p$@ $(wildcard $(patsubst %,doc/%.[158],$(apt-utils_MANPAGES)) $(patsubst %,doc/*/%.*.[158],$(apt-utils_MANPAGES)))
90ebe30c 250
b2e465d6
AL
251 dh_installchangelogs -p$@
252 dh_strip -p$@
253 dh_compress -p$@
254 dh_fixperms -p$@
149daa16 255 dh_makeshlibs -p$@
b2e465d6 256 dh_installdeb -p$@
bd5e34e8 257 dh_shlibdeps -p$@
782486e8
MV
258 dh_gencontrol -p$@
259 dh_md5sums -p$@
260 dh_builddeb -p$@
261
cb1a690c 262$(LIBAPT_PKG): build debian/$(LIBAPT_PKG).install
782486e8
MV
263 dh_testdir -p$@
264 dh_testroot -p$@
265 dh_prep -p$@
266 dh_installdirs -p$@
267
268 dh_install -p$@ --sourcedir=$(BLD)
08c9b191 269 dh_installdocs -p$@
782486e8
MV
270 dh_installchangelogs -p$@
271 dh_strip -p$@
272 dh_compress -p$@
273 dh_fixperms -p$@
f521559b 274 dh_makeshlibs -p$@
08c9b191 275 dh_installdeb -p$@
782486e8
MV
276 dh_shlibdeps -p$@
277 dh_gencontrol -p$@
278 dh_md5sums -p$@
279 dh_builddeb -p$@
280
cb1a690c 281$(LIBAPT_INST): build debian/$(LIBAPT_INST).install
782486e8
MV
282 dh_testdir -p$@
283 dh_testroot -p$@
284 dh_prep -p$@
285 dh_installdirs -p$@
286
287 dh_install -p$@ --sourcedir=$(BLD)
08c9b191 288 dh_installdocs -p$@
782486e8
MV
289 dh_installchangelogs -p$@
290 dh_strip -p$@
291 dh_compress -p$@
292 dh_fixperms -p$@
f521559b 293 dh_makeshlibs -p$@
08c9b191 294 dh_installdeb -p$@
bd5e34e8 295 dh_shlibdeps -p$@
782486e8 296 dh_gencontrol -p$@
c64bcd92
AL
297 dh_md5sums -p$@
298 dh_builddeb -p$@
2d18d44e 299
149daa16 300apt-transport-https: build libapt-pkg-dev
d546f98d
MV
301 dh_testdir -p$@
302 dh_testroot -p$@
af7a92c3 303 dh_prep -p$@
d546f98d
MV
304 dh_installdirs -p$@
305
2cf8c58b 306 dh_install -p$@ --sourcedir=$(BLD)
370ad5e1 307 dh_installdocs -p$@ debian/apt-transport-https.README
d546f98d
MV
308 dh_installexamples -p$@
309
310 # Install the man pages..
311 dh_installman -p$@
312
313 dh_installchangelogs -p$@
314 dh_strip -p$@
315 dh_compress -p$@
316 dh_fixperms -p$@
317 dh_installdeb -p$@
bd5e34e8 318 dh_shlibdeps -p$@
d546f98d
MV
319 dh_gencontrol -p$@
320 dh_md5sums -p$@
321 dh_builddeb -p$@
322
2d18d44e 323configure:
1d9fd7a2 324 $(MAKE) configure
2d18d44e 325
2d18d44e 326really-clean: clean
70371bc8 327 -find . -name Makefile.in -print0 | xargs --null --no-run-if-empty -- rm -f
2d18d44e
AL
328 find -name ChangeLog | xargs rm -f
329 rm -f l33ch-stamp
330
331binary: binary-indep binary-arch
149daa16 332.PHONY: build clean binary-indep binary-arch binary