No more gmake in top makefile
This commit is contained in:
parent
303eba31a4
commit
dbca8946f2
1 changed files with 2 additions and 3 deletions
5
Makefile
5
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::
|
||||
|
|
Loading…
Reference in a new issue