aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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]