diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2006-04-26 18:27:58 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:26:37 +0200 |
commit | a9192e8b618990551fcb230941e87728d86864eb (patch) | |
tree | ee6200e2a52c446c2f93e127750f6ad1334c7026 /i386 | |
parent | 81a6362099fddd939434b314b66af1353b51fec5 (diff) |
2006-04-26 Thomas Schwinge <tschwinge@gnu.org>
* Makefile.in: Replace `make' with `$(MAKE)'.
* i386/Makefile.in: Likewise.
Reported by Leonardo Lopes Pereira <leonardolopespereira@gmail.com>.
Diffstat (limited to 'i386')
-rw-r--r-- | i386/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/i386/Makefile.in b/i386/Makefile.in index dd021d9..1a6f6e7 100644 --- a/i386/Makefile.in +++ b/i386/Makefile.in @@ -172,7 +172,7 @@ FORCE: # install: - make -C linux $@ + $(MAKE) -C linux $@ installed-headers = $(addprefix mach/i386/, \ asm.h boolean.h disk.h eflags.h exception.h fp_reg.h ioccom.h \ @@ -186,10 +186,10 @@ $(installed-headers-names): $(includedir)/%: $(srcdir)/include/% install-headers: mkheaderdirs $(installed-headers-names) ln -sfn $(systype) $(includedir)/mach/machine - make -C linux $@ + $(MAKE) -C linux $@ install-kernel: - make -C linux $@ + $(MAKE) -C linux $@ mkheaderdirs: mkdir -p $(includedir)/mach/$(systype) |