On Fri, 4 Jul 2008, Ralf Wildenhues wrote:
* Vincent Torri wrote on Fri, Jul 04, 2008 at 07:47:36AM CEST:
1) is it normal to have -Wl,evas_wince_gapi.o ?
2) there are 2 -Xlinker. is it useful to add the one in module_la_LDFLAGS ?
AFAIK you don't need any of that. Just list the .rc files in *_SOURCES
and provide a .rc.lo rule, similar to:
lib_LTLIBRARIES = libfoo.la
libfoo_la_SOURCES = foo.c bar.rc
.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.
Vincent