debian/rules.d/tools/kconfig/Makefile: Use bison and flex to build kconfig

This commit is contained in:
Ben Hutchings 2018-03-13 02:06:49 +00:00
parent d68283849b
commit 8ca20af96f
2 changed files with 5 additions and 4 deletions

1
debian/changelog vendored
View File

@ -21,6 +21,7 @@ linux (4.16~rc5-1~exp1) UNRELEASED; urgency=medium
[ Ben Hutchings ]
* debian/control: Update profile qualification for build-deps on bison
and flex, which are now used to build kconfig
* debian/rules.d/tools/kconfig/Makefile: Use bison and flex to build kconfig
-- Uwe Kleine-König <ukleinek@debian.org> Fri, 23 Feb 2018 13:08:33 +0100

View File

@ -6,8 +6,8 @@ conf: conf.o zconf.tab.o
zconf.tab.c: kconf_id.c zconf.lex.c
%.c: %.c_shipped
ln -sf $< $@
%.lex.c: %.l
flex -o$@ -L $<
%.h: %.h_shipped
ln -sf $< $@
%.tab.c: %.y
bison -o$@ -t -l $<