summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2006-05-13 16:54:03 +0000
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2006-05-13 16:54:03 +0000
commitb9dea4fbc65fbfad4ea7ffb79e7cf7f280bd7f64 (patch)
tree303760afb607d5553061bef6add6b32221914bb7 /Makefile
parent214feb514bb66f652c09f425b67828898110b6c0 (diff)
downloadqemu-b9dea4fbc65fbfad4ea7ffb79e7cf7f280bd7f64.tar.gz
Move all: target first.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1918 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3a69a0494d..e6cff9a9e5 100644
--- a/Makefile
+++ b/Makefile
@@ -17,13 +17,13 @@ else
DOCS=
endif
+all: $(TOOLS) $(DOCS) recurse-all
+
subdir-%: dyngen$(EXESUF)
$(MAKE) -C $(subst subdir-,,$@) all
recurse-all: $(patsubst %,subdir-%, $(TARGET_DIRS))
-all: $(TOOLS) $(DOCS) recurse-all
-
qemu-img$(EXESUF): qemu-img.c block.c block-cow.c block-qcow.c aes.c block-vmdk.c block-cloop.c block-dmg.c block-bochs.c block-vpc.c block-vvfat.c
$(CC) -DQEMU_TOOL $(CFLAGS) $(LDFLAGS) $(DEFINES) -o $@ $^ -lz $(LIBS)