Skip to content

Commit

Permalink
[PATCH] kconfig: update kconfig Makefile
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Roman Zippel authored and Linus Torvalds committed Nov 9, 2005
1 parent 4cf3cbe commit 491d711
Showing 2 changed files with 7 additions and 136 deletions.
18 changes: 7 additions & 11 deletions scripts/kconfig/Makefile
Original file line number Diff line number Diff line change
@@ -114,7 +114,7 @@ gconf-objs := gconf.o kconfig_load.o zconf.tab.o
endif

clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \
.tmp_gtkcheck zconf.tab.c zconf.tab.h lex.zconf.c
.tmp_gtkcheck zconf.tab.c lex.zconf.c

# Needed for systems without gettext
KBUILD_HAVE_NLS := $(shell \
@@ -136,12 +136,6 @@ HOSTLOADLIBES_gconf = `pkg-config gtk+-2.0 gmodule-2.0 libglade-2.0 --libs`
HOSTCFLAGS_gconf.o = `pkg-config gtk+-2.0 gmodule-2.0 libglade-2.0 --cflags` \
-D LKC_DIRECT_LINK

$(obj)/conf.o $(obj)/mconf.o $(obj)/qconf.o $(obj)/gconf.o $(obj)/kxgettext: $(obj)/zconf.tab.h

$(obj)/zconf.tab.h: $(src)/zconf.tab.h_shipped
$(obj)/zconf.tab.c: $(src)/zconf.tab.c_shipped
$(obj)/lex.zconf.c: $(src)/lex.zconf.c_shipped

$(obj)/qconf.o: $(obj)/.tmp_qtcheck

ifeq ($(qconf-target),1)
@@ -230,13 +224,15 @@ $(obj)/lkc_defs.h: $(src)/lkc_proto.h

ifdef LKC_GENPARSER

$(obj)/zconf.tab.c: $(obj)/zconf.y
$(obj)/zconf.tab.h: $(obj)/zconf.tab.c
$(obj)/zconf.tab.c: $(src)/zconf.y
$(obj)/lex.zconf.c: $(src)/zconf.l

%.tab.c: %.y
bison -t -d -v -b $* -p $(notdir $*) $<
bison -l -b $* -p $(notdir $*) $<
cp $@ $@_shipped

lex.%.c: %.l
flex -P$(notdir $*) -o$@ $<
flex -L -P$(notdir $*) -o$@ $<
cp $@ $@_shipped

endif
125 changes: 0 additions & 125 deletions scripts/kconfig/zconf.tab.h_shipped

This file was deleted.

0 comments on commit 491d711

Please sign in to comment.