Remove bison/flex dependency Modified: trunk/reactos/tools/widl/Makefile _____
Modified: trunk/reactos/tools/widl/Makefile --- trunk/reactos/tools/widl/Makefile 2005-02-22 19:26:40 UTC (rev 13715) +++ trunk/reactos/tools/widl/Makefile 2005-02-22 19:59:12 UTC (rev 13716) @@ -63,10 +63,10 @@
# Optional use of flex and bison, this will allow independent building from # Wine. # -y.tab.c y.tab.h: parser.y - bison $(YACCOPT) -d -o y.tab.c parser.y +#y.tab.c y.tab.h: parser.y +# bison $(YACCOPT) -d -o y.tab.c parser.y # -lex.yy.c: parser.l y.tab.h - flex $(LEXOPT) -d -8 -olex.yy.c parser.l +#lex.yy.c: parser.l y.tab.h +# flex $(LEXOPT) -d -8 -olex.yy.c parser.l
# EOF