From 21520860924ae7f5323ea410d51e0a3d3a26f1be Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sun, 21 May 2023 13:56:43 +0200 Subject: [PATCH] buildsys: cleanup and expand clean target Signed-off-by: Thomas Lamprecht --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e8a541a3..4929d46d 100644 --- a/Makefile +++ b/Makefile @@ -132,11 +132,11 @@ clean: clean-deb $(MAKE) -C $(i) clean ;) $(CARGO) clean rm -f .do-cargo-build - find . -name '*~' -exec rm {} ';' -# allows one to avoid running cargo clean when one just wants to tidy up after a packgae build +# allows one to avoid running cargo clean when one just wants to tidy up after a package build clean-deb: - rm -rf *.deb *.dsc *.tar.gz *.buildinfo *.changes build/ + rm -rf build/ + rm -f *.deb *.dsc *.tar.* *.buildinfo *.build *.changes .PHONY: dinstall dinstall: ${SERVER_DEB} ${SERVER_DBG_DEB} ${CLIENT_DEB} ${CLIENT_DBG_DEB} \ -- 2.39.5