1
0
Fork 0

kconfig: rename zconf.l to lexer.l

Use a more logical name.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
hifive-unleashed-5.1
Masahiro Yamada 2019-01-24 19:47:29 +09:00
parent f17b5f06cb
commit 981e545a69
3 changed files with 4 additions and 4 deletions

View File

@ -143,10 +143,10 @@ help:
# ===========================================================================
# 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
HOSTCFLAGS_zconf.lex.o := -I$(src)
$(obj)/lexer.lex.o: $(obj)/zconf.tab.h
HOSTCFLAGS_lexer.lex.o := -I$(src)
HOSTCFLAGS_zconf.tab.o := -I$(src)
# conf: Used for defconfig, oldconfig and related targets

View File

@ -90,7 +90,7 @@ void *xrealloc(void *p, size_t size);
char *xstrdup(const char *s);
char *xstrndup(const char *s, size_t n);
/* zconf.l */
/* lexer.l */
int yylex(void);
struct gstr {