Commit 981e545a authored by Masahiro Yamada's avatar Masahiro Yamada

kconfig: rename zconf.l to lexer.l

Use a more logical name.
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent f17b5f06
...@@ -143,10 +143,10 @@ help: ...@@ -143,10 +143,10 @@ help:
# =========================================================================== # ===========================================================================
# object files used by all kconfig flavours # object files used by all kconfig flavours
common-objs := confdata.o expr.o symbol.o preprocess.o zconf.lex.o zconf.tab.o common-objs := confdata.o expr.o lexer.lex.o preprocess.o symbol.o zconf.tab.o
$(obj)/zconf.lex.o: $(obj)/zconf.tab.h $(obj)/lexer.lex.o: $(obj)/zconf.tab.h
HOSTCFLAGS_zconf.lex.o := -I$(src) HOSTCFLAGS_lexer.lex.o := -I$(src)
HOSTCFLAGS_zconf.tab.o := -I$(src) HOSTCFLAGS_zconf.tab.o := -I$(src)
# conf: Used for defconfig, oldconfig and related targets # conf: Used for defconfig, oldconfig and related targets
......
...@@ -90,7 +90,7 @@ void *xrealloc(void *p, size_t size); ...@@ -90,7 +90,7 @@ void *xrealloc(void *p, size_t size);
char *xstrdup(const char *s); char *xstrdup(const char *s);
char *xstrndup(const char *s, size_t n); char *xstrndup(const char *s, size_t n);
/* zconf.l */ /* lexer.l */
int yylex(void); int yylex(void);
struct gstr { struct gstr {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment