From: Ben Gras Date: Tue, 17 Jan 2006 15:09:15 +0000 (+0000) Subject: No more gmake in top makefile X-Git-Tag: v3.1.2a~442 X-Git-Url: http://zhaoyanbai.com/repos/html/index.html?a=commitdiff_plain;h=dbca8946f2acd34b9be4185537e4e11bc0419053;p=minix.git No more gmake in top makefile --- diff --git a/Makefile b/Makefile index 433c105c0..62842132a 100755 --- a/Makefile +++ b/Makefile @@ -1,7 +1,6 @@ # Master Makefile to compile everything in /usr/src except the system. MAKE = exec make -$(MAKEFLAGS) -GMAKE = /usr/gnu/bin/gmake usage: @echo "" @@ -38,7 +37,7 @@ includes: cd include && $(MAKE) install gcc libraries: - cd lib && $(GMAKE) all && $(GMAKE) install + cd lib && $(MAKE) all install cmds: if [ -f commands/Makefile ] ; then cd commands && $(MAKE) all; fi @@ -56,7 +55,7 @@ depend:: clean:: - cd lib && $(GMAKE) $@ + cd lib && $(MAKE) $@ test ! -f commands/Makefile || { cd commands && $(MAKE) $@; } etcfiles::