ia64/xen-unstable
changeset 16908:5d11d526a820
tools: Merge clean and distclean target.
Signed-off-by: Bastian Blank <waldi@debian.org>
Signed-off-by: Bastian Blank <waldi@debian.org>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Sun Jan 27 12:53:35 2008 +0000 (2008-01-27) |
parents | d6c12530c69d |
children | 7e5bae3586ee |
files | tools/Makefile |
line diff
1.1 --- a/tools/Makefile Sun Jan 27 12:49:42 2008 +0000 1.2 +++ b/tools/Makefile Sun Jan 27 12:53:35 2008 +0000 1.3 @@ -51,15 +51,12 @@ install: 1.4 $(INSTALL_DIR) $(DESTDIR)/var/log/xen 1.5 $(INSTALL_DIR) $(DESTDIR)/var/lib/xen 1.6 1.7 -.PHONY: clean 1.8 -clean: 1.9 +.PHONY: clean distclean 1.10 +clean distclean: 1.11 @set -e; for subdir in $(SUBDIRS-y); do \ 1.12 - $(MAKE) subdir-$@-$$subdir; \ 1.13 + $(MAKE) subdir-clean-$$subdir; \ 1.14 done 1.15 1.16 -.PHONY: distclean 1.17 -distclean: clean 1.18 - 1.19 subdir-all-%: 1.20 $(MAKE) -C $* all 1.21