From ee72d4c019c61f2830b84041e6d8c32f667171fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Tue, 22 Feb 2005 19:59:12 +0000 Subject: [PATCH] Remove bison/flex dependency svn path=/trunk/; revision=13716 --- reactos/tools/widl/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/tools/widl/Makefile b/reactos/tools/widl/Makefile index 664a62726d7..2716d5384c9 100644 --- a/reactos/tools/widl/Makefile +++ b/reactos/tools/widl/Makefile @@ -63,10 +63,10 @@ YACCOPT = #-v # 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