aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-07-20 11:18:39 +0100
committerKeir Fraser <keir.fraser@citrix.com>2010-07-20 11:18:39 +0100
commitbfb32dde4f0951d3fbc0b7235e72f7bac1f318f0 (patch)
treeeae9df2bee306f606eb044e097be2eb47f1d1026 /tools/Makefile
parente3c0ad6c82b945362ac95cd42120b802d57949da (diff)
downloadxen-bfb32dde4f0951d3fbc0b7235e72f7bac1f318f0.tar.gz
xen-bfb32dde4f0951d3fbc0b7235e72f7bac1f318f0.tar.bz2
xen-bfb32dde4f0951d3fbc0b7235e72f7bac1f318f0.zip
tools: Update distclean target to remove auto-gen'ed tarballs.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 73cf708b62..f0c46ed8a7 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -62,8 +62,11 @@ install: subdirs-install
$(INSTALL_DIR) $(DESTDIR)/var/lib/xen
$(INSTALL_DIR) $(DESTDIR)/var/lock/subsys
-.PHONY: clean distclean
-clean distclean: subdirs-clean
+.PHONY: clean
+clean: subdirs-clean
+
+.PHONY: distclean
+distclean: subdirs-distclean
ifneq ($(XEN_COMPILE_ARCH),$(XEN_TARGET_ARCH))
IOEMU_CONFIGURE_CROSS ?= --cpu=$(XEN_TARGET_ARCH) \
@@ -121,3 +124,6 @@ subdir-clean-debugger/gdbsx:
subdir-install-debugger/gdbsx:
$(MAKE) -C debugger/gdbsx install
+
+subdir-distclean-firmware: .phony
+ $(MAKE) -C firmware distclean