diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-07-29 19:02:38 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-08-01 13:54:39 +0200 |
commit | 0e912c03208075b95ea726076bf1b45db8419bc2 (patch) | |
tree | 5c3dcf854004a244aafe3abe49714f19620d48ec /scripts/kconfig/qconf.cc | |
parent | kconfig: qconf: use if_changed for qconf.moc rule (diff) | |
download | linux-0e912c03208075b95ea726076bf1b45db8419bc2.tar.xz linux-0e912c03208075b95ea726076bf1b45db8419bc2.zip |
kconfig: qconf: compile moc object separately
Currently, qconf.moc is included from qconf.cc but they can be compiled
independently.
When you modify qconf.cc, qconf.moc does not need recompiling.
Rename qconf.moc to qconf-moc.cc, and split it out as an independent
compilation unit.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/qconf.cc')
-rw-r--r-- | scripts/kconfig/qconf.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index 4a616128a154..bb0a0bd511b9 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -23,7 +23,6 @@ #include "lkc.h" #include "qconf.h" -#include "qconf.moc" #include "images.h" |