From: Russ Allbery Date: Sat, 5 Nov 2011 20:35:31 +0000 (-0700) Subject: Add build-arch and build-indep targets to debian/rules X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e5e36e4032f41ce71d270a21b8a190839baad4f6;p=debian%2Fdebian-policy.git Add build-arch and build-indep targets to debian/rules --- diff --git a/debian/changelog b/debian/changelog index 239db75..f7980d6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,6 +18,7 @@ debian-policy (3.9.3.0) UNRELEASED; urgency=low * Fix typo in upgrading-checklist entry for multiarch paths. Thanks, Michael Dorrington. Closes: #626408 * Add AGPL-3 to tools/license-count. + * Add build-arch and build-indep targets to debian/rules. [ Bill Allombert ] * Policy: Link relationship fields (7.1) to architecture specification diff --git a/debian/rules b/debian/rules index 96565f0..6a28033 100755 --- a/debian/rules +++ b/debian/rules @@ -80,7 +80,8 @@ install_program := install -p -o root -g root -m 755 make_directory := install -p -d -o root -g root -m 755 -all build: stamp-build +all build build-indep: stamp-build +build-arch: stamp-build: version.ent $(sanitycheck) $(MAKE) $(SGML_FILES:=.sgml.validate) \ $(SGML_FILES:=.html.tar.gz) \ @@ -171,7 +172,8 @@ stamp-policy: build $(sanitycheck) touch stamp-policy -.PHONY: configure build binary binary-arch binary-indep clean checkroot +.PHONY: configure build build-arch build-indep binary binary-arch +.PHONY: binary-indep clean checkroot #Local variables: #mode: makefile