two options for you to try: 1. If your Makefiles use macros, such as LEX=lex or YACC=yacc (which are predefined in GNU make), then you can override them from the command line and avoid changing your Makefiles, for example:
$ make LEX=flex YACC=bison 2. If your Makefiles do NOT use macros for those two programs, then you can try creating symbolic links to them, for example: $ ln -s /usr/bin/flex /usr/bin/lex $ ln -s /usr/bin/bison /usr/bin/yacc Then, as someone else posted, you should be able to use the fact that the GNU versions of these programs are compatible with the traditional versions. > -----Original Message----- > From: nemrut cesetevi [mailto:cesetevi@;hotmail.com] > Sent: Tuesday, October 22, 2002 7:33 AM > To: [EMAIL PROTECTED] > Subject: lex yacc looking > > > > > i want to use lex&yacc instead of flex&bison. i have > makefile.i dont want to > make any change. > > be happy > > > > _________________________________________________________________ > Surf the Web without missing calls! Get MSN Broadband. > http://resourcecenter.msn.com/access/plans/freeactivation.asp > > > -- > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Bug reporting: http://cygwin.com/bugs.html > Documentation: http://cygwin.com/docs.html > FAQ: http://cygwin.com/faq/ > > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/