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.
|
# Master Makefile to compile everything in /usr/src except the system.
|
||||||
|
|
||||||
MAKE = exec make -$(MAKEFLAGS)
|
MAKE = exec make -$(MAKEFLAGS)
|
||||||
GMAKE = /usr/gnu/bin/gmake
|
|
||||||
|
|
||||||
usage:
|
usage:
|
||||||
@echo ""
|
@echo ""
|
||||||
|
@ -38,7 +37,7 @@ includes:
|
||||||
cd include && $(MAKE) install gcc
|
cd include && $(MAKE) install gcc
|
||||||
|
|
||||||
libraries:
|
libraries:
|
||||||
cd lib && $(GMAKE) all && $(GMAKE) install
|
cd lib && $(MAKE) all install
|
||||||
|
|
||||||
cmds:
|
cmds:
|
||||||
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) all; fi
|
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) all; fi
|
||||||
|
@ -56,7 +55,7 @@ depend::
|
||||||
|
|
||||||
|
|
||||||
clean::
|
clean::
|
||||||
cd lib && $(GMAKE) $@
|
cd lib && $(MAKE) $@
|
||||||
test ! -f commands/Makefile || { cd commands && $(MAKE) $@; }
|
test ! -f commands/Makefile || { cd commands && $(MAKE) $@; }
|
||||||
|
|
||||||
etcfiles::
|
etcfiles::
|
||||||
|
|
Loading…
Reference in a new issue