6.21.3. Contents of Libtool
              Installed programs:
              libtool and libtoolize
            
            
              Installed libraries:
              libltdl.[a,so]
            
          The Libtool package contains the GNU generic library support script. It wraps the complexity of using shared libraries in a consistent, portable interface.
This package requires compiler variables to be set for the target in the environment.
export CC="${CLFS_TARGET}-gcc"
export CXX="${CLFS_TARGET}-g++"
export AR="${CLFS_TARGET}-ar"
export AS="${CLFS_TARGET}-as"
export RANLIB="${CLFS_TARGET}-ranlib"
export LD="${CLFS_TARGET}-ld"
export STRIP="${CLFS_TARGET}-strip"
      Prepare Libtool for compilation:
./configure --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    --prefix=/usr
        Compile the package:
make
Install the package:
make DESTDIR=${CLFS} install