diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-05-28 21:33:08 +0200 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-05-28 21:33:08 +0200 |
commit | a53bc24c4d5a6b1f31060e43789a12af6e39b572 (patch) | |
tree | 0f1d01fd79f3aa8e4d59b6a30c1f0ba4aa3b865a /quantum | |
parent | 17977a7e24ddab6ca101341b33c8fe7ad13e68f5 (diff) | |
download | qmk_firmware-a53bc24c4d5a6b1f31060e43789a12af6e39b572.tar.gz qmk_firmware-a53bc24c4d5a6b1f31060e43789a12af6e39b572.tar.xz |
makes .SILENT (less verbose) by default - override with VERBOSE=1
also took out some @echo newlines to make things a bit cleaner
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/quantum.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/quantum.mk b/quantum/quantum.mk index c099d6793..00d3e8114 100644 --- a/quantum/quantum.mk +++ b/quantum/quantum.mk @@ -1,5 +1,9 @@ QUANTUM_DIR = quantum +ifndef VERBOSE +.SILENT: +endif + # # project specific files SRC += $(QUANTUM_DIR)/quantum.c \ $(QUANTUM_DIR)/keymap_common.c \ |