This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: flex -lfl
- To: Sascha Ziemann <szi at aibon dot ping dot de>
- Subject: Re: flex -lfl
- From: Akim Demaille <akim at epita dot fr>
- Date: 24 Mar 2000 13:44:21 +0100
- Cc: automake at gnu dot org
- References: <7u4s9wor32.fsf@olivia.aibon.ping.de>
>>>>> "Sascha" == Sascha Ziemann <szi@aibon.ping.de> writes:
Sascha> One needs -lfl and the other not.
Just don't use -lfl at all. It contains a dummy main, which you
certainly already have available somewhere else, and a dummy yywrap,
which you can write: return 1. Alternatively, use %option noyywrap.
And then the flex file is self contained.
Akim