From: Matthew Vernon Date: Thu, 7 Jul 2016 07:25:58 +0000 (+0100) Subject: Add mandatory build-{arch,indep} targets (Closes: #821966) X-Git-Tag: debian/4.29~2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~matthewv/git?p=bible-kjv.git;a=commitdiff_plain;h=e3edbf0ed87b5f49c2f9518968e1e8ce422cbfdd Add mandatory build-{arch,indep} targets (Closes: #821966) These both simply depend upon build. --- diff --git a/debian/rules b/debian/rules index f3a132c..4b585fa 100755 --- a/debian/rules +++ b/debian/rules @@ -21,6 +21,10 @@ build: cd debian && gcc -g -O2 -o randverse randverse.c touch build +build-arch: build + +build-indep: build + clean: $(checkdir) -rm -f build @@ -104,4 +108,4 @@ checkroot: $(checkdir) test root = "`whoami`" -.PHONY: binary binary-arch binary-indep clean checkroot +.PHONY: binary binary-arch binary-indep clean checkroot build-arch build-indep