Change make to $(MAKE), patch by Hideki IWAMOTO
This commit is contained in:
parent
3bff66617a
commit
b19c73dee6
6
Makefile
6
Makefile
@ -148,7 +148,7 @@ include/config/MARKER: depend scripts/split-include
|
|||||||
|
|
||||||
include/config.h: .config
|
include/config.h: .config
|
||||||
@if [ ! -x ./scripts/config/conf ] ; then \
|
@if [ ! -x ./scripts/config/conf ] ; then \
|
||||||
make -C scripts/config conf; \
|
$(MAKE) -C scripts/config conf; \
|
||||||
fi;
|
fi;
|
||||||
@./scripts/config/conf -o sysdeps/$(TARGET_OS)/Config.in
|
@./scripts/config/conf -o sysdeps/$(TARGET_OS)/Config.in
|
||||||
|
|
||||||
@ -168,12 +168,12 @@ all: menuconfig
|
|||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
scripts/config/conf:
|
scripts/config/conf:
|
||||||
make -C scripts/config conf
|
$(MAKE) -C scripts/config conf
|
||||||
-@if [ ! -f .config ] ; then \
|
-@if [ ! -f .config ] ; then \
|
||||||
cp sysdeps/$(TARGET_OS)/defconfig .config; \
|
cp sysdeps/$(TARGET_OS)/defconfig .config; \
|
||||||
fi
|
fi
|
||||||
scripts/config/mconf:
|
scripts/config/mconf:
|
||||||
make -C scripts/config ncurses conf mconf
|
$(MAKE) -C scripts/config ncurses conf mconf
|
||||||
-@if [ ! -f .config ] ; then \
|
-@if [ ! -f .config ] ; then \
|
||||||
cp sysdeps/$(TARGET_OS)/defconfig .config; \
|
cp sysdeps/$(TARGET_OS)/defconfig .config; \
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user