diff options
author | Roman Zippel <zippel@linux-m68k.org> | 2005-11-09 00:34:50 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-09 10:55:53 -0500 |
commit | 491d711035dc08071ed58cf470f15efadb67cb1c (patch) | |
tree | 0da933a45aae6810afcbbba38b4f35046477416c /scripts/kconfig/Makefile | |
parent | 4cf3cbe2a9682242cd38897914b1f2a95f1db7e4 (diff) |
[PATCH] kconfig: update kconfig Makefile
Remove the long obsolete zconf.tab.h and fix kconfig make rules to generate
the correct output files. Setting LKC_GENPARSER will now also update the
shipped files.
Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'scripts/kconfig/Makefile')
-rw-r--r-- | scripts/kconfig/Makefile | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index c65c435c4923..65e3e7371251 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -114,7 +114,7 @@ gconf-objs := gconf.o kconfig_load.o zconf.tab.o | |||
114 | endif | 114 | endif |
115 | 115 | ||
116 | clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \ | 116 | clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \ |
117 | .tmp_gtkcheck zconf.tab.c zconf.tab.h lex.zconf.c | 117 | .tmp_gtkcheck zconf.tab.c lex.zconf.c |
118 | 118 | ||
119 | # Needed for systems without gettext | 119 | # Needed for systems without gettext |
120 | KBUILD_HAVE_NLS := $(shell \ | 120 | KBUILD_HAVE_NLS := $(shell \ |
@@ -136,12 +136,6 @@ HOSTLOADLIBES_gconf = `pkg-config gtk+-2.0 gmodule-2.0 libglade-2.0 --libs` | |||
136 | HOSTCFLAGS_gconf.o = `pkg-config gtk+-2.0 gmodule-2.0 libglade-2.0 --cflags` \ | 136 | HOSTCFLAGS_gconf.o = `pkg-config gtk+-2.0 gmodule-2.0 libglade-2.0 --cflags` \ |
137 | -D LKC_DIRECT_LINK | 137 | -D LKC_DIRECT_LINK |
138 | 138 | ||
139 | $(obj)/conf.o $(obj)/mconf.o $(obj)/qconf.o $(obj)/gconf.o $(obj)/kxgettext: $(obj)/zconf.tab.h | ||
140 | |||
141 | $(obj)/zconf.tab.h: $(src)/zconf.tab.h_shipped | ||
142 | $(obj)/zconf.tab.c: $(src)/zconf.tab.c_shipped | ||
143 | $(obj)/lex.zconf.c: $(src)/lex.zconf.c_shipped | ||
144 | |||
145 | $(obj)/qconf.o: $(obj)/.tmp_qtcheck | 139 | $(obj)/qconf.o: $(obj)/.tmp_qtcheck |
146 | 140 | ||
147 | ifeq ($(qconf-target),1) | 141 | ifeq ($(qconf-target),1) |
@@ -230,13 +224,15 @@ $(obj)/lkc_defs.h: $(src)/lkc_proto.h | |||
230 | 224 | ||
231 | ifdef LKC_GENPARSER | 225 | ifdef LKC_GENPARSER |
232 | 226 | ||
233 | $(obj)/zconf.tab.c: $(obj)/zconf.y | 227 | $(obj)/zconf.tab.c: $(src)/zconf.y |
234 | $(obj)/zconf.tab.h: $(obj)/zconf.tab.c | 228 | $(obj)/lex.zconf.c: $(src)/zconf.l |
235 | 229 | ||
236 | %.tab.c: %.y | 230 | %.tab.c: %.y |
237 | bison -t -d -v -b $* -p $(notdir $*) $< | 231 | bison -l -b $* -p $(notdir $*) $< |
232 | cp $@ $@_shipped | ||
238 | 233 | ||
239 | lex.%.c: %.l | 234 | lex.%.c: %.l |
240 | flex -P$(notdir $*) -o$@ $< | 235 | flex -L -P$(notdir $*) -o$@ $< |
236 | cp $@ $@_shipped | ||
241 | 237 | ||
242 | endif | 238 | endif |