aboutsummaryrefslogtreecommitdiffstats
path: root/tools/firmware/Makefile
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-03-25 09:51:03 +0000
committerKeir Fraser <keir.fraser@citrix.com>2008-03-25 09:51:03 +0000
commitc3e57fa148a49310331af988961f7f2916bde3d9 (patch)
treea1f5eda6a38b890c22783202b79510450eaef074 /tools/firmware/Makefile
parentdcaa724bbe25abc48fff86ce1729512f514f1670 (diff)
downloadxen-c3e57fa148a49310331af988961f7f2916bde3d9.tar.gz
xen-c3e57fa148a49310331af988961f7f2916bde3d9.tar.bz2
xen-c3e57fa148a49310331af988961f7f2916bde3d9.zip
tools/firmware: Use generic subdirs rules.
Signed-off-by: Bastian Blank <waldi@debian.org>
Diffstat (limited to 'tools/firmware/Makefile')
-rw-r--r--tools/firmware/Makefile11
1 files changed, 3 insertions, 8 deletions
diff --git a/tools/firmware/Makefile b/tools/firmware/Makefile
index 67fee87473..b2d7f532c9 100644
--- a/tools/firmware/Makefile
+++ b/tools/firmware/Makefile
@@ -7,7 +7,7 @@ TARGET := hvmloader/hvmloader
INST_DIR := $(DESTDIR)/usr/lib/xen/boot
SUBDIRS :=
-SUBDIRS += rombios rombios/32bit
+SUBDIRS += rombios
SUBDIRS += vgabios
SUBDIRS += extboot
#SUBDIRS += etherboot
@@ -21,9 +21,7 @@ all:
echo "(visit http://www.cix.co.uk/~mayday for more information)"; \
echo "***********************************************************"; \
else \
- for subdir in $(SUBDIRS); do \
- $(MAKE) -C $$subdir $@; \
- done; \
+ $(MAKE) subdirs-$@; \
fi
@@ -33,7 +31,4 @@ install: all
[ ! -e $(TARGET) ] || $(INSTALL_DATA) $(TARGET) $(INST_DIR)
.PHONY: clean
-clean:
- @set -e; for subdir in $(SUBDIRS); do \
- $(MAKE) -C $$subdir $@; \
- done
+clean: subdirs-clean