October 2000
Intermediate to advanced
432 pages
9h 9m
English
Automake supports Libtool libraries in two ways: It can help you to build the Libtool libraries themselves, and also to build executables that link against Libtool libraries.
Continuing in the spirit of making Libtool library management look like native static archive management, converting a 'Makefile.am' from static archive use to Libtool library use is a matter of changing the name of the library and adding a Libtool prefix somewhere. For example, a 'Makefile.am' for building a static archive might be as follows:
lib_LIBRARIES = libshell.a libshell_a_SOURCES = object.c subr.c symbol.c
This builds a static archive called 'libshell.a' consisting of the objects ...
Read now
Unlock full access