Buildsystem tweaks

Set build output verbosity level down to 1.
Make the 'install' target depend on the 'all' and 'depend' targets.
This commit is contained in:
Arun Thomas 2010-05-13 13:26:27 +00:00
parent 8630337c80
commit 869a181025
3 changed files with 11 additions and 1 deletions

View File

@ -8,6 +8,11 @@
LIBISPRIVATE?= no LIBISPRIVATE?= no
##### Minix rule to make the "install" target depend on
##### "all" and "depend" targets
realinstall: realall
realall: depend
##### Basic targets ##### Basic targets
.PHONY: libinstall .PHONY: libinstall
realinstall: libinstall realinstall: libinstall

View File

@ -906,7 +906,7 @@ MAKEDIRTARGET=\
# 3 Ignore the effect of the "@" prefix in make commands # 3 Ignore the effect of the "@" prefix in make commands
# 4 Trace shell commands using the shell's -x flag # 4 Trace shell commands using the shell's -x flag
# #
MAKEVERBOSE?= 2 MAKEVERBOSE?= 1
.if ${MAKEVERBOSE} == 0 .if ${MAKEVERBOSE} == 0
_MKMSG?= @\# _MKMSG?= @\#

View File

@ -10,6 +10,11 @@
# Makefile. # Makefile.
# #
##### Minix rule to make the "install" target depend on
##### "all" and "depend" targets
realinstall: realall
realall: depend
##### Basic targets ##### Basic targets
realinstall: proginstall scriptsinstall realinstall: proginstall scriptsinstall
clean: cleanprog clean: cleanprog