No more gmake in top makefile

This commit is contained in:
Ben Gras 2006-01-17 15:09:15 +00:00
parent 303eba31a4
commit dbca8946f2

View file

@ -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::