From: Konrad Rzeszutek Wilk Date: Tue, 10 Feb 2015 21:24:20 +0000 (-0500) Subject: Makefile: make xen-clean should use 'mrproper' instead of rm -Rf X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=7483e0837480114c66edc6ecc76bc75c4d2941cb;p=xentesttools%2Fbootstrap.git Makefile: make xen-clean should use 'mrproper' instead of rm -Rf As that its job. Suggested-by: Boris Ostrovksy Signed-off-by: Konrad Rzeszutek Wilk --- diff --git a/Makefile b/Makefile index fc06958..6cd7625 100644 --- a/Makefile +++ b/Makefile @@ -196,9 +196,8 @@ endif xen-clean: if [ -e xen ]; then \ rm -Rf xen/tools/iommu-remote; \ - rm -Rf xen/dist; \ $(MAKE) -C xen clean; \ - $(MAKE) -C mrproper; \ + $(MAKE) -C xen mrproper; \ if [ -e xen/tools/config.h ]; then rm xen/tools/config.h; fi; \ if [ -e xen/tools/firmware/seabios-dir/out/autoconf.h ]; then rm xen/tools/firmware/seabios-dir/out/autoconf.h; fi; \ fi