>>>>> On Tue, 15 Jul 2003 13:03:04 +0200, Bram Stolk <[EMAIL PROTECTED]> said:
> Hello, I want to build a python module, which should be created as
> _foo.so However, automake/autoconf (as well as libtool) only let me
> create sharedobjects with a lib prefix: libfoo.so
What I do is add something like this to Makefile.am file...
all-local: hippomodule.so
hippomodule.so: $(lib_LTLIBRARIES)
@echo creating hippomodule.so
cp .libs/libhippo.so.0.0.0 hippomodule.so
