[EMAIL PROTECTED] schreef: > On Wed, 06 Dec 2006 15:40:30 -0500 Troman <[EMAIL PROTECTED]> wrote: > >> As Watermelon pointed out, this is probably due to the >> outdated/missing >> lexer/grammar files. >> I have written a Flex/Bison compilation guide >> http://wz2100.net/wiki/user:flex_bison_win , it should cover all >> the >> necessary compilation steps for windows users. >> > Thanks, that did the trick. The ones on gna should be > deleted/replaced. :) > I did up a quick .bat file (just modify paths)... > > bison -d audp_parser.y -o audp_parser.c > bison -d resource_parser.y -o resource_parser.c > bison -d scriptvals_parser.y -o scriptvals_parser.c > bison -d script_parser.y -o script_parser.c > bison -d strres_parser.y -o strres_parser.c > flex -oaudp_lexer.c audp_lexer.l > flex -olevel_lexer.c level_lexer.l > flex -oresource_lexer.c resource_lexer.l > flex -oscriptvals_lexer.c scriptvals_lexer.l > flex -oscript_lexer.c script_lexer.l > flex -ostrres_lexer.c strres_lexer.l > Doesn't MSVC provide a make-like system? Wouldn't it be nicer to throw those ^ commands in such a makefile. Since MinGW/GCC already execute those commands through the use of makefiles (Makefile.raw sequence).
I'm no MSVC expert btw, just give me (g)Vim and a shell console to type `make' in and I'm happy. The only IDEs I'm familiar with are Code::Blocks and DevCpp. Anyway, what I was trying to say is that the need to execute a batch file/script doesn't seem nice to me. I'd prefer an automated build system (meaning only one build command or only one click on a button). -- Giel
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Warzone-dev mailing list [email protected] https://mail.gna.org/listinfo/warzone-dev
