diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-01-01 20:25:05 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-01-01 20:25:05 +0000 |
commit | 1b15669903e061e052f5f0d06310a1de5b8b0e3f (patch) | |
tree | 604ad10812f0caecf6e671b90c1dc02dfeb97dcd /Makefile | |
parent | 6c662ad1d5e1f45da6d739bb005e161d02a83bc2 (diff) |
Amir Shalem writes:
here are few patches for better compatability in ./Makefile:
make.diff - make should never called directly, change it to $(MAKE)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -67,7 +67,7 @@ finished: shared include/bits/uClibc_config.h: .config @if [ ! -x ./extra/config/conf ] ; then \ - make -C extra/config conf; \ + $(MAKE) -C extra/config conf; \ fi; $(RM) -r include/bits $(INSTALL) -d include/bits @@ -124,7 +124,7 @@ ifeq ($(strip $(UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA)),y) endif ifeq ($(strip $(UCLIBC_PREGENERATED_LOCALE_DATA)),y) (cd extra/locale; zcat $(LOCALE_DATA_FILENAME) | tar -xvf -) - make -C extra/locale pregen + $(MAKE) -C extra/locale pregen endif @@ -268,10 +268,10 @@ all: menuconfig # configuration # --------------------------------------------------------------------------- extra/config/conf: - make -C extra/config conf + $(MAKE) -C extra/config conf extra/config/mconf: - make -C extra/config ncurses mconf + $(MAKE) -C extra/config ncurses mconf menuconfig: extra/config/mconf $(RM) -r include/bits |