From: Konrad Rzeszutek Wilk Date: Tue, 29 Apr 2014 13:42:30 +0000 (-0400) Subject: Makefile: Use 'mrproper' when cleaning Xen's directory. X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=7a939f021f0b32fc767ec7f1a3df0de5b6789a3f;p=xentesttools%2Fbootstrap.git Makefile: Use 'mrproper' when cleaning Xen's directory. We weren't doing that which meant we still had the obsoleted versions of binary that Xen pulls - such as QEMU/SeaBIOS, etc. Signed-off-by: Konrad Rzeszutek Wilk --- diff --git a/Makefile b/Makefile index 896efee..da0840c 100644 --- a/Makefile +++ b/Makefile @@ -191,6 +191,7 @@ xen-clean: if [ -e xen ]; then \ rm -Rf xen/tools/iommu-remote; \ $(MAKE) -C xen clean; \ + $(MAKE) -C mrproper; \ if [ -e xen/tools/config.h ]; then rm xen/tools/config.h; fi \ fi