Hey,

I would like to create a shared object from a .rc file and link the resulting .o with the other object file to get my dll.

I tried different things, without success. Mainly, in Makefile.am, I use:


.rc.o:
        $(WINDRES) -o $@ $<

pkg_LTLIBRARIES = module.la

module_la_SOURCES = \
evas_wince_gapi.rc \
other_source_files


But windres is not called and evas_wince_gapi.rc is ignored.

What is the correct use of windres in a Makefile.am ?

Note 1: i use libtool to create my dll

Note 2: I actually cross compile to get a dll for Windows CE.

thank you

Vincent Torri


Reply via email to