]> Zhao Yanbai Git Server - minix.git/commitdiff
No more gmake in top makefile
authorBen Gras <ben@minix3.org>
Tue, 17 Jan 2006 15:09:15 +0000 (15:09 +0000)
committerBen Gras <ben@minix3.org>
Tue, 17 Jan 2006 15:09:15 +0000 (15:09 +0000)
Makefile

index 433c105c00b9e05c2b51dcb7f9d4f66ecbd54778..62842132a5c8eb04d1354f3be0a8c8a9dcb00391 100755 (executable)
--- 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::