From: Ben Gras Date: Mon, 19 Sep 2005 14:48:31 +0000 (+0000) Subject: commands make all does all X-Git-Tag: v3.1.0~50 X-Git-Url: http://zhaoyanbai.com/repos/dnssec-keyfromlabel.html?a=commitdiff_plain;h=d039824938edaa3c6b98c24a390302f73671db61;p=minix.git commands make all does all --- diff --git a/Makefile b/Makefile index 18b2fabe1..2b786e190 100755 --- a/Makefile +++ b/Makefile @@ -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