diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-05-31 18:54:17 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-05-31 20:00:54 +0200 |
commit | 6b1f64ed09edcd712460123fbc32bc41cf81c321 (patch) | |
tree | 5ed9c63082f0642300768965b5d803b30f4d64d5 /compilerplugins | |
parent | b0a650ff8ab553bf3a86f4dfd85b481ef10bbdff (diff) |
reoder stuff in makefile
At the top should be stuff to set manually if needed.
Change-Id: I516ac6df8102f00f6fc34c4c87d040688fcc2e99
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/Makefile-clang.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compilerplugins/Makefile-clang.mk b/compilerplugins/Makefile-clang.mk index 2c71d8c620f1..04b938f4451c 100644 --- a/compilerplugins/Makefile-clang.mk +++ b/compilerplugins/Makefile-clang.mk @@ -13,8 +13,6 @@ # Compile flags ('make CLANGCXXFLAGS=-g' if you need to debug the plugin) CLANGCXXFLAGS=-O2 -Wall -Wextra -g -QUIET=$(if $(VERBOSE)$(verbose),,@) - # The uninteresting rest. # Clang headers require these. @@ -31,6 +29,8 @@ CLANGINDIR=$(SRCDIR)/compilerplugins/clang # plugin will cause cache misses with ccache. CLANGOUTDIR=$(BUILDDIR)/compilerplugins/obj +QUIET=$(if $(VERBOSE)$(verbose),,@) + compilerplugins: compilerplugins-build # The list of source files, generated automatically (all files in clang/, but not subdirs). |