* [PATCH] stubdom: fix make clean ; make
@ 2008-07-30 16:39 Samuel Thibault
0 siblings, 0 replies; only message in thread
From: Samuel Thibault @ 2008-07-30 16:39 UTC (permalink / raw)
To: xen-devel
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.
diff -r e355f9dce939 stubdom/Makefile
--- a/stubdom/Makefile Wed Jul 30 17:20:25 2008 +0100
+++ b/stubdom/Makefile Wed Jul 30 17:38:05 2008 +0100
@@ -321,7 +321,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
@@ -329,6 +330,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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-07-30 16:39 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-30 16:39 [PATCH] stubdom: fix make clean ; make Samuel Thibault
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.