From 8f8697361c99a6eda22f9373d64d15e57729b148 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fabian=20Gr=C3=BCnbichler?= Date: Wed, 21 Mar 2018 11:26:33 +0100 Subject: [PATCH] build: add abiupdate target MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit to automatically extract and commit the ABI data from a built pve-headers binary package. Signed-off-by: Fabian Grünbichler --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Makefile b/Makefile index 6f97d7e..fad37e0 100644 --- a/Makefile +++ b/Makefile @@ -170,6 +170,24 @@ submodule: test -f "${ZFSONLINUX_SUBMODULE}/Makefile" || git submodule update --init ${ZFSONLINUX_SUBMODULE} (test -f "${ZFSSRC}/debian/changelog" && test -f "${SPLZRC}/debian/changelog") || (cd ${ZFSONLINUX_SUBMODULE}; git submodule update --init) +# call after ABI bump with header deb in working directory +.PHONY: abiupdate +abiupdate: abi-prev-${KVNAME} +abi-prev-${KVNAME}: abi-tmp-${KVNAME} +ifneq ($(strip $(shell git status --untracked-files=no --porcelain -z)),) + @echo "working directory unclean, aborting!" + @false +else + git rm "abi-prev-*" + mv $< $@ + git add $@ + git commit -s -m "update ABI file for ${KVNAME}" -m "(generated with debian/scripts/abi-generate)" + @echo "update abi-prev-${KVNAME} committed!" +endif + +abi-tmp-${KVNAME}: + @ test -e ${HDR_DEB} || (echo "need ${HDR_DEB} to extract ABI data!" && false) + debian/scripts/abi-generate ${HDR_DEB} $@ ${KVNAME} 1 .PHONY: clean clean: -- 2.39.2