commands make all does all

This commit is contained in:
Ben Gras 2005-09-19 14:48:31 +00:00
parent e7b1257858
commit d039824938

View file

@ -11,7 +11,7 @@ usage:
@echo " make world # Compile everything (libraries & commands)" >&2
@echo " make includes # Install include files from src/" >&2
@echo " make libraries # Compile and install libraries" >&2
@echo " make cmds # Compile non-big commands, but don't install" >&2
@echo " make cmds # Compile all, commands, but don't install" >&2
@echo " make install # Compile and install commands" >&2
@echo " make depend # Generate required .depend files" >&2
@echo " make clean # Remove all compiler results" >&2
@ -27,7 +27,7 @@ usage:
# 'make install' target.
#
# etcfiles has to be done first.
world: includes depend libraries cmds bigcmds install biginstallcmds postinstall
world: includes depend libraries cmds install postinstall
includes:
cd include && $(MAKE) install
@ -38,15 +38,9 @@ libraries:
cmds:
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) all; fi
bigcmds:
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) bigall; fi
install::
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) install; fi
biginstallcmds::
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) biginstall; fi
depend::
mkdep kernel
mkdep servers