diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.in | 6 | ||||
-rw-r--r-- | i386/Makefile.in | 6 |
3 files changed, 12 insertions, 6 deletions
@@ -1,3 +1,9 @@ +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>. + 2006-04-08 Thomas Schwinge <tschwinge@gnu.org> * i386/Makefile.in (INCLUDES): Don't add `$(srcdir)/bogus'. diff --git a/Makefile.in b/Makefile.in index 8322982..575305a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -306,18 +306,18 @@ kernel: kernel.o clib-routines.o installed-headers-names = $(addprefix $(includedir)/,$(installed-headers)) install: install-headers install-kernel - make -C $(systype) $@ + $(MAKE) -C $(systype) $@ $(installed-headers-names): $(includedir)/%: $(srcdir)/include/% $(INSTALL_DATA) $< $@ install-headers: mkheaderdirs $(installed-headers-names) ln -sfn $(systype) $(includedir)/mach/machine - make -C $(systype) $@ + $(MAKE) -C $(systype) $@ install-kernel: kernel mkkerneldirs $(INSTALL_PROGRAM) kernel $(bootdir)/gnumach - make -C $(systype) $@ + $(MAKE) -C $(systype) $@ mkheaderdirs: mkdir -p $(includedir) $(includedir)/device $(includedir)/mach/exec 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) |