aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-05-12 19:32:15 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-05-12 19:32:15 +0000
commit7d3505c55aae54c9610e8be1ff476ec8849c98e6 (patch)
tree8e8b024b2e8b547dc48d8024fe5b3001a7c46c0d /Makefile
parentfd872598d8d8cf78c1f12ed9661baf9ac0943c04 (diff)
bsd port (Markus Niemisto)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@800 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 7645c0857d..0f64aae5a3 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ endif
all: dyngen$(EXESUF) $(TOOLS) qemu-doc.html qemu-tech.html qemu.1
for d in $(TARGET_DIRS); do \
- make -C $$d $@ || exit 1 ; \
+ $(MAKE) -C $$d $@ || exit 1 ; \
done
qemu-mkcow: qemu-mkcow.c
@@ -29,9 +29,9 @@ clean:
# avoid old build problems by removing potentially incorrect old files
rm -f config.mak config.h op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
rm -f *.o *.a $(TOOLS) dyngen$(EXESUF) TAGS qemu.pod
- make -C tests clean
+ $(MAKE) -C tests clean
for d in $(TARGET_DIRS); do \
- make -C $$d $@ || exit 1 ; \
+ $(MAKE) -C $$d $@ || exit 1 ; \
done
distclean: clean
@@ -55,12 +55,12 @@ ifndef CONFIG_WIN32
install qemu.1 qemu-mkcow.1 "$(mandir)/man1"
endif
for d in $(TARGET_DIRS); do \
- make -C $$d $@ || exit 1 ; \
+ $(MAKE) -C $$d $@ || exit 1 ; \
done
# various test targets
test speed test2: all
- make -C tests $@
+ $(MAKE) -C tests $@
TAGS:
etags *.[ch] tests/*.[ch]