Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Subject: RE: lex yacc looking MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Date: Wed, 23 Oct 2002 11:24:01 -0400 content-class: urn:content-classes:message X-MimeOLE: Produced By Microsoft Exchange V6.0.4417.0 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: From: "Harig, Mark A." To: "nemrut cesetevi" , Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id g9NFO9J32293 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 AT hotmail DOT com] > Sent: Tuesday, October 22, 2002 7:33 AM > To: cygwin AT cygwin DOT com > 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/