aboutsummaryrefslogtreecommitdiff
path: root/Makefile
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 /Makefile
parent3bff66617ae1c39fbdccd7776ca0e4d6af80935c (diff)
downloadbusybox-b19c73dee69b6ec64700aa9eef5385d06329f730.tar.gz
Change make to $(MAKE), patch by Hideki IWAMOTO
Diffstat (limited to 'Makefile')
-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
include/config.h: .config
@if [ ! -x ./scripts/config/conf ] ; then \
- make -C scripts/config conf; \
+ $(MAKE) -C scripts/config conf; \
fi;
@./scripts/config/conf -o sysdeps/$(TARGET_OS)/Config.in
@@ -168,12 +168,12 @@ all: menuconfig
# ---------------------------------------------------------------------------
scripts/config/conf:
- make -C scripts/config conf
+ $(MAKE) -C scripts/config conf
-@if [ ! -f .config ] ; then \
cp sysdeps/$(TARGET_OS)/defconfig .config; \
fi
scripts/config/mconf:
- make -C scripts/config ncurses conf mconf
+ $(MAKE) -C scripts/config ncurses conf mconf
-@if [ ! -f .config ] ; then \
cp sysdeps/$(TARGET_OS)/defconfig .config; \
fi