On Sun, 6 May 2001 [EMAIL PROTECTED] wrote:
> On 06-May-2001 Oded Arbel wrote:
> > I'm trying to use libtool to help me build a library. I wrote a simple
> > Makefile (here's a snippet :
> > ...
>
> Good. libtool is the way to build libraries in different environment and
> stay sane.
Thanks :-)
On 06-May-2001 Oded Arbel wrote:
> I'm trying to use libtool to help me build a library. I wrote a simple
> Makefile (here's a snippet :
> ...
Good. libtool is the way to build libraries in different environment and
stay sane.
> I've tried to link against the .la file buf ld failed saying that
>
Hi list.
I'm trying to use libtool to help me build a library. I wrote a simple
Makefile (here's a snippet :
all: ${TARGET}
${TARGET}: ${OBJS}
libtool ${CC} ${CXXFLAGS} -g -o ${TARGET} ${LIBS} ${OBJS}
MyLib.lo: MyLib.cpp
libtool ${CC} ${CXXFLAGS} ${DEFS} ${INCS} -g -O -c MyLib