Hello Vincent
* Vincent Torri wrote on Fri, Jul 04, 2008 at 03:26:48PM CEST:
> On Fri, 4 Jul 2008, Ralf Wildenhues wrote:
>> .rc.lo:
>> $(LIBTOOL) --tag=RC --mode=compile $(WINDRES) -c $< -o $@
>
> ok. I'll try that. Btw, is it $(RC) or $(WINDRES) ? Because in the
> Makefile, RC is set to my windres, but i didn't find WINDRES.
Typo of mine, sorry about that. Probably you'll want a rule such as
.rc.lo:
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --tag=RC --mode=compile
$(RC) $(RCFLAGS) -c $< -o $@
You may have to adjust the flags a bit if they don't work like this.
Cheers,
Ralf