| delorie.com/archives/browse.cgi | search | 
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm | 
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> | 
| List-Archive: | <http://sources.redhat.com/ml/cygwin/> | 
| List-Post: | <mailto:cygwin AT cygwin DOT com> | 
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sources.redhat.com/ml/#faqs> | 
| 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 | 
| 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: | <BADF3C947A1BD54FBA75C70C241B0B9E10AB00@ex02.idirect.net> | 
| X-MS-Has-Attach: | |
| X-MS-TNEF-Correlator: | |
| From: | "Harig, Mark A." <maharig AT idirect DOT net> | 
| To: | "nemrut cesetevi" <cesetevi AT hotmail DOT com>, <cygwin AT cygwin DOT com> | 
| 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/
| webmaster | delorie software privacy | 
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |