From a32e06dc95765ab167419cd2779205ad0b5ad5d0 Mon Sep 17 00:00:00 2001 From: George Dunlap Date: Wed, 7 Mar 2012 07:43:02 +0000 Subject: build: Don't remove user-supplied xen-version during make clean xen/Makefile is designed to allow the user to supply a file named xen/xen-include to change the format of xen version strings. Unfortunately, "make clean" removes xen/xen*, which will remove this file. Make the clean process more targeted. Signed-off-by: George Dunlap Committed-by: Keir Fraser --- xen/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xen/Makefile') diff --git a/xen/Makefile b/xen/Makefile index 564f7080ee..fc8ce18f30 100644 --- a/xen/Makefile +++ b/xen/Makefile @@ -61,7 +61,7 @@ _clean: delete-unfresh-files $(MAKE) -f $(BASEDIR)/Rules.mk -C xsm clean $(MAKE) -f $(BASEDIR)/Rules.mk -C crypto clean $(MAKE) -f $(BASEDIR)/Rules.mk -C arch/$(TARGET_ARCH) clean - rm -f include/asm *.o $(TARGET)* *~ core + rm -f include/asm *.o $(TARGET) $(TARGET).gz $(TARGET)-syms *~ core rm -f include/asm-*/asm-offsets.h [ -d tools/figlet ] && rm -f .banner* -- cgit v1.2.3