diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-08-19 17:58:43 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-08-22 01:14:11 +0900 |
commit | eb27ea5ce7f367b185953cc9bc6e606004cfd8c4 (patch) | |
tree | 9b49344af8c36e30e9c846ead46c00b704c65195 /scripts/Makefile.modfinal | |
parent | 2ff2b7ec65dcea2261bdf404654975f44ad6323d (diff) | |
download | linux-eb27ea5ce7f367b185953cc9bc6e606004cfd8c4.tar.gz linux-eb27ea5ce7f367b185953cc9bc6e606004cfd8c4.tar.bz2 linux-eb27ea5ce7f367b185953cc9bc6e606004cfd8c4.zip |
kbuild: move modkern_{c,a}flags to Makefile.lib from Makefile.build
Makefile.lib is included by Makefile.modfinal as well as Makefile.build.
Move modkern_cflags to Makefile.lib in order to simplify cmd_cc_o_c
in Makefile.modfinal. Move modkern_cflags as well for consistency.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/Makefile.modfinal')
-rw-r--r-- | scripts/Makefile.modfinal | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/Makefile.modfinal b/scripts/Makefile.modfinal index c8875f62dd96..411c1e600e7d 100644 --- a/scripts/Makefile.modfinal +++ b/scripts/Makefile.modfinal @@ -17,12 +17,12 @@ modules := $(sort $(shell cat $(MODORDER))) __modfinal: $(modules) @: -# modname is set to make c_flags define KBUILD_MODNAME +# modname and part-of-module are set to make c_flags define proper module flags modname = $(notdir $(@:.mod.o=)) +part-of-module = y quiet_cmd_cc_o_c = CC [M] $@ - cmd_cc_o_c = $(CC) $(c_flags) $(KBUILD_CFLAGS_MODULE) $(CFLAGS_MODULE) \ - -c -o $@ $< + cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $< %.mod.o: %.mod.c FORCE $(call if_changed_dep,cc_o_c) |