libtool
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: windres on mingw32 and cygwin


From: Alon Bar-Lev
Subject: Re: windres on mingw32 and cygwin
Date: Sat, 13 Dec 2008 19:58:41 +0200

On 12/13/08, Jason Curl <address@hidden> wrote:
>  .rc.lo:
>   $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --tag=RC --mode=compile
> $(RC) $(RCFLAGS) $< -o $@
>
>  libwin_la_LDFLAGS = -no-undefined -version-info @WINLIB_VERSION_INFO@
> @SHLIB_VERSION_ARG@
>

You can look at OpenSC implementation it works both for libtool-1.5
and libtool-2.
Maybe I am doing something wrong... But at least it works... :)
I will be happy to know if there is a better way.

I have the followings:
RCCOMPILE = $(RC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
        $(AM_CPPFLAGS) $(CPPFLAGS)
LTRCCOMPILE = $(LIBTOOL) --mode=compile --tag=RC $(RCCOMPILE)

.rc.lo:
        $(LTRCCOMPILE) -i "$<" -o "$@"

.rc.o:
        $(RCCOMPILE) -i "$<" -o "$@"

Look at:
http://www.opensc-project.org/svn/opensc/trunk/configure.ac
http://www.opensc-project.org/svn/opensc/trunk/win32/ltrc.inc
http://www.opensc-project.org/svn/opensc/trunk/src/libopensc/Makefile.am

Alon.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]