Makefile: Add a V=3 verbosity setting.

Prior to this commit there was an unfortunate disagreement between the seL4
project build system and the kernel's Makefile. V=3 was interpreted as maximum
verbosity by the project build system and minimum verbosity by the kernel's
Makefile. This commit makes V=3 the maximum verbosity for both.

JIRA: VER-159
This commit is contained in:
Matthew Fernandez
2014-10-03 16:05:18 +10:00
parent b2d53830cc
commit 1ee573f9a1

View File

@@ -76,12 +76,19 @@ ifeq ($V, 2)
MAKE_SILENT =
quiet =
Q =
else
ifeq ($V, 3)
BUILD_VERBOSE = 1
MAKE_SILENT =
quiet =
Q =
else
MAKE_SILENT = -s
quiet = quiet_
Q = @
endif
endif
endif
### Benchmarking parameters
########################################