diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-02-07 16:57:37 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-02-07 17:05:18 +0100 |
commit | 5535195c63b6add4fcc787053350a14cf0f1c0c2 (patch) | |
tree | 251c0c61236b7ca81b30f6af0e6d165a7d3eb86b /compilerplugins | |
parent | e97e62a4707e09739f9c00f8fc4a943f0123a9cf (diff) |
make sure the default target for compilerplugins is building
CLANGFORCE was the first in the makefile after
c6ffe17631cccf11fbe00479d2169116d494a7da and therefore the default
Change-Id: Id3b86a1ea2c27479067f7f55a977da3e6e8a2dfb
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/Makefile-clang.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/compilerplugins/Makefile-clang.mk b/compilerplugins/Makefile-clang.mk index 9d6aa14c3e80..b6c99019ffe2 100644 --- a/compilerplugins/Makefile-clang.mk +++ b/compilerplugins/Makefile-clang.mk @@ -29,6 +29,8 @@ CLANGINDIR=$(SRCDIR)/compilerplugins/clang # plugin will cause cache misses with ccache. CLANGOUTDIR=$(BUILDDIR)/compilerplugins/obj +compilerplugins: compilerplugins-build + # The list of source files, generated automatically (all files in clang/, but not subdirs). CLANGSRC=$(foreach src,$(wildcard $(CLANGINDIR)/*.cxx), $(notdir $(src))) # Remember the sources and if they have changed, force plugin relinking. @@ -51,7 +53,7 @@ $(CLANGOUTDIR)/plugin.so: $(CLANGOUTDIR)/sources.txt $(CLANGOUTDIR)/sources.txt: touch $@ -compilerplugins: $(CLANGOUTDIR) $(CLANGOUTDIR)/plugin.so +compilerplugins-build: $(CLANGOUTDIR) $(CLANGOUTDIR)/plugin.so compilerplugins-clean: rm -rf $(CLANGOUTDIR) |