diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2003-08-29 13:25:55 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2003-08-29 13:25:55 +0000 |
commit | b19c73dee69b6ec64700aa9eef5385d06329f730 (patch) | |
tree | 25bb00a6a69655bc8e245616e04c2eaba26fc31a | |
parent | 3bff66617ae1c39fbdccd7776ca0e4d6af80935c (diff) | |
download | busybox-w32-b19c73dee69b6ec64700aa9eef5385d06329f730.tar.gz busybox-w32-b19c73dee69b6ec64700aa9eef5385d06329f730.tar.bz2 busybox-w32-b19c73dee69b6ec64700aa9eef5385d06329f730.zip |
Change make to $(MAKE), patch by Hideki IWAMOTO
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -148,7 +148,7 @@ include/config/MARKER: depend scripts/split-include | |||
148 | 148 | ||
149 | include/config.h: .config | 149 | include/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 | ||
170 | scripts/config/conf: | 170 | scripts/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 |
175 | scripts/config/mconf: | 175 | scripts/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 |