Hello,
I've been reading the manuals for autoconf/automake and have been unable
to get a setup working correctly with autoconf. I've written up a toy
shared library and right now the Makefile has a rule to install the
library directly to `/usr/local`. All I really want from autoconf is to
be
Hello,
I've been reading the manuals for autoconf/automake and have been unable
to get a setup working correctly with autoconf. I've written up a toy
shared library and right now the Makefile has a rule to install the
library directly to `/usr/local`. All I really want from autoconf is to
be
Hello,
I've been reading the manuals for autoconf/automake and have been unable
to get a setup working correctly with autoconf. I've written up a toy
shared library and right now the Makefile has a rule to install the
library directly to `/usr/local`. All I really want from autoconf is to
be
See attached tarball. Unpack,
./autoreconf -fi
./configure
make
make check
make install DESTDIR=`pwd`/../library-dst
>From your makefile:
"so = libpublic.so"
"lib_LTLIBRARIES = libpublic.la"
"ldflags = -shared -Wl,-soname,$(so)"
automatic (soname will be "*.so.0")
"solinkname =
Hi Thomas,
On 08/16/2016 02:29 AM, Thomas Nyberg wrote:
I've been reading the manuals for autoconf/automake and have been
unable to get a setup working correctly with autoconf. I've written up
a toy shared library and right now the Makefile has a rule to install
the library directly to `/usr/