]> git.proxmox.com Git - pve-kernel.git/commitdiff
buildsys: make fwcheck/abicheck phony order-only deps
authorFabian Grünbichler <f.gruenbichler@proxmox.com>
Tue, 28 Mar 2017 10:56:33 +0000 (12:56 +0200)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Tue, 28 Mar 2017 10:56:40 +0000 (12:56 +0200)
otherwise, they trigger a rebuild of the kernel .deb every
time - bad for uploading using make upload

Makefile

index bf1ac4c9304a72590bc2754c09e895c5a3167e4c..80378865d990aebde48790c0f1e7e58dbfeddd52 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -124,7 +124,7 @@ else
        $(CC) --version|grep "6\.3" || false
 endif
 
-${DST_DEB}: data control.in prerm.in postinst.in postrm.in copyright changelog.Debian fwcheck abicheck
+${DST_DEB}: data control.in prerm.in postinst.in postrm.in copyright changelog.Debian fwcheck abicheck
        mkdir -p data/DEBIAN
        sed -e 's/@KERNEL_VER@/${KERNEL_VER}/' -e 's/@KVNAME@/${KVNAME}/' -e 's/@PKGREL@/${PKGREL}/' <control.in >data/DEBIAN/control
        sed -e 's/@@KVNAME@@/${KVNAME}/g'  <prerm.in >data/DEBIAN/prerm
@@ -160,6 +160,7 @@ fwlist-${KVNAME}: data
        ./find-firmware.pl data/lib/modules/${KVNAME} >fwlist.tmp
        mv fwlist.tmp $@
 
+.PHONY: fwcheck
 fwcheck: fwlist-${KVNAME} fwlist-previous
        echo "checking fwlist for changes since last built firmware package.."
        echo "if this check fails, add fwlist-${KVNAME} to the pve-firmware repository and upload a new firmware package together with the ${KVNAME} kernel"
@@ -169,6 +170,7 @@ fwcheck: fwlist-${KVNAME} fwlist-previous
 abi-${KVNAME}: .compile_mark
        sed -e 's/^\(.\+\)[[:space:]]\+\(.\+\)[[:space:]]\(.\+\)$$/\3 \2 \1/' ${KERNEL_SRC}/Module.symvers | sort > abi-${KVNAME}
 
+.PHONY: abicheck
 abicheck: abi-${KVNAME} abi-previous abi-blacklist
        ./abi-check abi-${KVNAME} abi-previous ${SKIPABI}