# Master Makefile to compile everything in /usr/src except the system.
MAKE = exec make -$(MAKEFLAGS)
-GMAKE = /usr/gnu/bin/gmake
usage:
@echo ""
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
clean::
- cd lib && $(GMAKE) $@
+ cd lib && $(MAKE) $@
test ! -f commands/Makefile || { cd commands && $(MAKE) $@; }
etcfiles::