diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-11-28 22:56:31 -0500 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-01 09:09:38 -0500 |
commit | ce2fd53a10c7d17934c005029382f8310e565504 (patch) | |
tree | 1a2069d9a332cb34068ef9956fc960cefa6b29e8 /scripts/Makefile.gcc-plugins | |
parent | 059bc9fc375e00f159f9d7c5ca9d18ab843f95de (diff) |
kbuild: descend into scripts/gcc-plugins/ via scripts/Makefile
Now that 'archprepare' depends on 'scripts', Kbuild can descend into
scripts/gcc-plugins in a more standard way.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'scripts/Makefile.gcc-plugins')
-rw-r--r-- | scripts/Makefile.gcc-plugins | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/Makefile.gcc-plugins b/scripts/Makefile.gcc-plugins index 46c5c6809806..c36f19959619 100644 --- a/scripts/Makefile.gcc-plugins +++ b/scripts/Makefile.gcc-plugins | |||
@@ -49,11 +49,3 @@ KBUILD_CFLAGS += $(GCC_PLUGINS_CFLAGS) | |||
49 | # All enabled GCC plugins are collected here for building below. | 49 | # All enabled GCC plugins are collected here for building below. |
50 | GCC_PLUGIN := $(gcc-plugin-y) | 50 | GCC_PLUGIN := $(gcc-plugin-y) |
51 | export GCC_PLUGIN | 51 | export GCC_PLUGIN |
52 | |||
53 | # Actually do the build, if requested. | ||
54 | PHONY += gcc-plugins | ||
55 | gcc-plugins: scripts_basic | ||
56 | ifdef CONFIG_GCC_PLUGINS | ||
57 | $(Q)$(MAKE) $(build)=scripts/gcc-plugins | ||
58 | endif | ||
59 | @: | ||