Remove bison/flex dependency

svn path=/trunk/; revision=13716
This commit is contained in:
Gé van Geldorp 2005-02-22 19:59:12 +00:00
parent d041e45119
commit ee72d4c019

View file

@ -63,10 +63,10 @@ YACCOPT = #-v
# Optional use of flex and bison, this will allow independent building from # Optional use of flex and bison, this will allow independent building from
# Wine. # Wine.
# #
y.tab.c y.tab.h: parser.y #y.tab.c y.tab.h: parser.y
bison $(YACCOPT) -d -o y.tab.c parser.y # bison $(YACCOPT) -d -o y.tab.c parser.y
# #
lex.yy.c: parser.l y.tab.h #lex.yy.c: parser.l y.tab.h
flex $(LEXOPT) -d -8 -olex.yy.c parser.l # flex $(LEXOPT) -d -8 -olex.yy.c parser.l
# EOF # EOF