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

kconfig: rename zconf.l to lexer.l



Use a more logical name.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent f17b5f06
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -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
+0 −0

File moved.

+1 −1
Original line number Original line Diff line number Diff line
@@ -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 {