From: Anthony PERARD Date: Wed, 13 Oct 2021 15:51:12 +0000 (+0200) Subject: build: clean common temporary files from root makefile X-Git-Tag: archive/raspbian/4.16.0+51-g0941d6cb-1+rpi1~2^2~42^2~94 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=9e319e5258d0274c15da2ea9355dc1569a0fa832;p=xen.git build: clean common temporary files from root makefile Signed-off-by: Anthony PERARD Reviewed-by: Jan Beulich --- diff --git a/xen/Makefile b/xen/Makefile index 5d01101662..a3189eb47c 100644 --- a/xen/Makefile +++ b/xen/Makefile @@ -379,6 +379,7 @@ _clean: delete-unfresh-files $(MAKE) $(clean) test $(MAKE) $(kconfig) clean find . \( -name "*.o" -o -name ".*.d" -o -name ".*.d2" \ + -o -name ".*.o.tmp" -o -name "*~" -o -name "core" \ -o -name "*.gcno" -o -name ".*.cmd" -o -name "lib.a" \) -exec rm -f {} \; rm -f include/asm $(TARGET) $(TARGET).gz $(TARGET).efi $(TARGET).efi.map $(TARGET)-syms $(TARGET)-syms.map *~ core rm -f asm-offsets.s include/asm-*/asm-offsets.h diff --git a/xen/scripts/Makefile.clean b/xen/scripts/Makefile.clean index 027c200c0e..8582ec35e4 100644 --- a/xen/scripts/Makefile.clean +++ b/xen/scripts/Makefile.clean @@ -14,10 +14,8 @@ include Makefile subdir-all := $(subdir-y) $(subdir-n) $(subdir-) \ $(patsubst %/,%, $(filter %/, $(obj-y) $(obj-n) $(obj-))) -DEPS_RM = $(DEPS) $(DEPS_INCLUDE) .PHONY: clean -clean:: $(subdir-all) - rm -f *.o .*.o.tmp *~ core $(DEPS_RM) +clean:: $(subdir-all) ; # Descending # ---------------------------------------------------------------------------