From 438f8cbed5260f4319a2aa7eee506bc402691c44 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 31 Jul 2008 09:49:28 +0100 Subject: [PATCH] stubdom: fix make clean ; make make should not have to regenerate the libxc and ioemu directories since that is part of the mk-headers target. Use the subdirectory clean targets instead to clean just the object files. Signed-off-by: Samuel Thibault --- stubdom/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stubdom/Makefile b/stubdom/Makefile index 9206f28ade..d6aa8c5940 100644 --- a/stubdom/Makefile +++ b/stubdom/Makefile @@ -320,7 +320,8 @@ clean: $(MAKE) -C caml clean $(MAKE) -C c clean $(MAKE) -C grub clean - rm -fr libxc ioemu mini-os include + $(MAKE) -C libxc clean + $(MAKE) -C ioemu clean # clean the cross-compilation result .PHONY: crossclean @@ -328,6 +329,7 @@ crossclean: clean rm -fr $(CROSS_ROOT) rm -fr newlib-build rm -fr zlib-$(ZLIB_VERSION) pciutils-$(LIBPCI_VERSION) + rm -fr libxc ioemu rm -f mk-headers # clean patched sources -- 2.30.2