aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-08-29 13:25:55 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-08-29 13:25:55 +0000
commitb19c73dee69b6ec64700aa9eef5385d06329f730 (patch)
tree25bb00a6a69655bc8e245616e04c2eaba26fc31a
parent3bff66617ae1c39fbdccd7776ca0e4d6af80935c (diff)
downloadbusybox-w32-b19c73dee69b6ec64700aa9eef5385d06329f730.tar.gz
busybox-w32-b19c73dee69b6ec64700aa9eef5385d06329f730.tar.bz2
busybox-w32-b19c73dee69b6ec64700aa9eef5385d06329f730.zip
Change make to $(MAKE), patch by Hideki IWAMOTO
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index bfa76010b..b99bb4f18 100644
--- a/Makefile
+++ b/Makefile
@@ -148,7 +148,7 @@ include/config/MARKER: depend scripts/split-include
148 148
149include/config.h: .config 149include/config.h: .config
150 @if [ ! -x ./scripts/config/conf ] ; then \ 150 @if [ ! -x ./scripts/config/conf ] ; then \
151 make -C scripts/config conf; \ 151 $(MAKE) -C scripts/config conf; \
152 fi; 152 fi;
153 @./scripts/config/conf -o sysdeps/$(TARGET_OS)/Config.in 153 @./scripts/config/conf -o sysdeps/$(TARGET_OS)/Config.in
154 154
@@ -168,12 +168,12 @@ all: menuconfig
168# --------------------------------------------------------------------------- 168# ---------------------------------------------------------------------------
169 169
170scripts/config/conf: 170scripts/config/conf:
171 make -C scripts/config conf 171 $(MAKE) -C scripts/config conf
172 -@if [ ! -f .config ] ; then \ 172 -@if [ ! -f .config ] ; then \
173 cp sysdeps/$(TARGET_OS)/defconfig .config; \ 173 cp sysdeps/$(TARGET_OS)/defconfig .config; \
174 fi 174 fi
175scripts/config/mconf: 175scripts/config/mconf:
176 make -C scripts/config ncurses conf mconf 176 $(MAKE) -C scripts/config ncurses conf mconf
177 -@if [ ! -f .config ] ; then \ 177 -@if [ ! -f .config ] ; then \
178 cp sysdeps/$(TARGET_OS)/defconfig .config; \ 178 cp sysdeps/$(TARGET_OS)/defconfig .config; \
179 fi 179 fi