File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -143,11 +143,12 @@ help:
143
143
144
144
# ===========================================================================
145
145
# object files used by all kconfig flavours
146
- common-objs := confdata.o expr.o lexer.lex.o preprocess.o symbol.o zconf.tab.o
146
+ common-objs := confdata.o expr.o lexer.lex.o parser.tab.o preprocess.o \
147
+ symbol.o
147
148
148
- $(obj ) /lexer.lex.o : $(obj ) /zconf .tab.h
149
+ $(obj ) /lexer.lex.o : $(obj ) /parser .tab.h
149
150
HOSTCFLAGS_lexer.lex.o := -I$(src )
150
- HOSTCFLAGS_zconf .tab.o := -I$(src )
151
+ HOSTCFLAGS_parser .tab.o := -I$(src )
151
152
152
153
# conf: Used for defconfig, oldconfig and related targets
153
154
hostprogs-y += conf
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ struct symbol {
172
172
* int "BAZ Value"
173
173
* range 1..255
174
174
*
175
- * Please, also check zconf .y:print_symbol() when modifying the
175
+ * Please, also check parser .y:print_symbol() when modifying the
176
176
* list of property types!
177
177
*/
178
178
enum prop_type {
Original file line number Diff line number Diff line change 15
15
#include < unistd.h>
16
16
17
17
#include " lkc.h"
18
- #include " zconf .tab.h"
18
+ #include " parser .tab.h"
19
19
20
20
#define YY_DECL static int yylex1 (void )
21
21
File renamed without changes.
You can’t perform that action at this time.
0 commit comments