commands make all does all
This commit is contained in:
parent
e7b1257858
commit
d039824938
1 changed files with 2 additions and 8 deletions
10
Makefile
10
Makefile
|
@ -11,7 +11,7 @@ usage:
|
||||||
@echo " make world # Compile everything (libraries & commands)" >&2
|
@echo " make world # Compile everything (libraries & commands)" >&2
|
||||||
@echo " make includes # Install include files from src/" >&2
|
@echo " make includes # Install include files from src/" >&2
|
||||||
@echo " make libraries # Compile and install libraries" >&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 install # Compile and install commands" >&2
|
||||||
@echo " make depend # Generate required .depend files" >&2
|
@echo " make depend # Generate required .depend files" >&2
|
||||||
@echo " make clean # Remove all compiler results" >&2
|
@echo " make clean # Remove all compiler results" >&2
|
||||||
|
@ -27,7 +27,7 @@ usage:
|
||||||
# 'make install' target.
|
# 'make install' target.
|
||||||
#
|
#
|
||||||
# etcfiles has to be done first.
|
# etcfiles has to be done first.
|
||||||
world: includes depend libraries cmds bigcmds install biginstallcmds postinstall
|
world: includes depend libraries cmds install postinstall
|
||||||
|
|
||||||
includes:
|
includes:
|
||||||
cd include && $(MAKE) install
|
cd include && $(MAKE) install
|
||||||
|
@ -38,15 +38,9 @@ libraries:
|
||||||
cmds:
|
cmds:
|
||||||
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) all; fi
|
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) all; fi
|
||||||
|
|
||||||
bigcmds:
|
|
||||||
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) bigall; fi
|
|
||||||
|
|
||||||
install::
|
install::
|
||||||
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) install; fi
|
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) install; fi
|
||||||
|
|
||||||
biginstallcmds::
|
|
||||||
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) biginstall; fi
|
|
||||||
|
|
||||||
depend::
|
depend::
|
||||||
mkdep kernel
|
mkdep kernel
|
||||||
mkdep servers
|
mkdep servers
|
||||||
|
|
Loading…
Reference in a new issue