chiark / gitweb /
Add mandatory build-{arch,indep} targets (Closes: #821966)
authorMatthew Vernon <matthew@debian.org>
Thu, 7 Jul 2016 07:25:58 +0000 (08:25 +0100)
committerMatthew Vernon <matthew@debian.org>
Thu, 7 Jul 2016 07:25:58 +0000 (08:25 +0100)
These both simply depend upon build.

debian/rules

index f3a132c97f89543bd651b3022ebcf25bd1d87545..4b585fa48f1fc32e6fa808e755d84439ea09438b 100755 (executable)
@@ -21,6 +21,10 @@ build:
        cd debian && gcc -g -O2 -o randverse randverse.c
        touch build
 
        cd debian && gcc -g -O2 -o randverse randverse.c
        touch build
 
+build-arch: build
+
+build-indep: build
+
 clean:
        $(checkdir)
        -rm -f build
 clean:
        $(checkdir)
        -rm -f build
@@ -104,4 +108,4 @@ checkroot:
        $(checkdir)
        test root = "`whoami`"
 
        $(checkdir)
        test root = "`whoami`"
 
-.PHONY: binary binary-arch binary-indep clean checkroot
+.PHONY: binary binary-arch binary-indep clean checkroot build-arch build-indep