diff options
| author | Ed Maste <emaste@freebsd.org> | 2015-04-01 13:58:38 -0400 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-04-02 15:58:39 +0200 |
| commit | fb8597bb65eff5c868db52668d21888e4fe7c27a (patch) | |
| tree | 743c2f5ab66d723a9995677cc71649dbb749aea5 | |
| parent | 4cc856fabae1447d53890e707c70f257a7691174 (diff) | |
| download | focaccia-qemu-fb8597bb65eff5c868db52668d21888e4fe7c27a.tar.gz focaccia-qemu-fb8597bb65eff5c868db52668d21888e4fe7c27a.zip | |
Use $(MAKE) for recursive make
On BSDs "make" is typically BSD make, while "gmake" is GNU make. Signed-off-by: Ed Maste <emaste@freebsd.org> Message-Id: <1427911118-21905-1-git-send-email-emaste@freebsd.org> [Fix $(INSTALLER) too as reported by Fam Zheng. - Paolo] Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile index 88bce561a8..93af871dde 100644 --- a/Makefile +++ b/Makefile @@ -331,8 +331,8 @@ distclean: clean rm -rf $$d || exit 1 ; \ done rm -Rf .sdk - if test -f pixman/config.log; then make -C pixman distclean; fi - if test -f dtc/version_gen.h; then make $(DTC_MAKE_ARGS) clean; fi + if test -f pixman/config.log; then $(MAKE) -C pixman distclean; fi + if test -f dtc/version_gen.h; then $(MAKE) $(DTC_MAKE_ARGS) clean; fi KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ ar de en-us fi fr-be hr it lv nl pl ru th \ @@ -532,7 +532,7 @@ installer: $(INSTALLER) INSTDIR=/tmp/qemu-nsis $(INSTALLER): $(SRC_PATH)/qemu.nsi - make install prefix=${INSTDIR} + $(MAKE) install prefix=${INSTDIR} ifdef SIGNCODE (cd ${INSTDIR}; \ for i in *.exe; do \ |