diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-21 17:33:04 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-28 22:22:38 +0900 |
commit | 558e78e3ce844c61ceffe32775dbefacf167b023 (patch) | |
tree | b0e4f2bbbfabb939be8847dc51197fe62e4c3cc2 /scripts/kconfig/zconf.y | |
parent | 0c874100108f03401cb3154801d2671bbad40ad4 (diff) |
kconfig: split some C files out of zconf.y
I want to compile each C file independently instead of including all
of them from zconf.y.
Split out confdata.c, expr.c, symbol.c, and preprocess.c .
These are low-hanging fruits.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/kconfig/zconf.y')
-rw-r--r-- | scripts/kconfig/zconf.y | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/kconfig/zconf.y b/scripts/kconfig/zconf.y index 0d590cb07b71..a990f46f3825 100644 --- a/scripts/kconfig/zconf.y +++ b/scripts/kconfig/zconf.y @@ -731,8 +731,4 @@ void zconfdump(FILE *out) #include "zconf.lex.c" #include "util.c" -#include "confdata.c" -#include "expr.c" -#include "symbol.c" #include "menu.c" -#include "preprocess.c" |