Een generiek script voor bibliotheekondersteuning dat de complexiteit van het gebruik van gedeelde bibliotheken verbergt achter een consistente, draagbare interface. Meer informatie: https://www.gnu.org/software/libtool/manual/libtool.html#Invoking-libtool.
libtool
-object:libtool --mode=compile gcc -c {{pad/naar/bron.c}} -o {{pad/naar/bron.lo}}
libtool --mode=link gcc -o {{pad/naar/bibliotheek.lo}} {{pad/naar/bron.lo}}
libtool
gegenereerde programma's of bibliotheken kan gebruiken:libtool --mode=execute gdb {{pad/naar/programma}}
libtool --mode=install cp {{pad/naar/bibliotheek.la}} {{pad/naar/installatiemap}}
libtool
-bibliotheken op het systeem:libtool --mode=finish {{pad/naar/installatiemap}}
libtool --mode=uninstall {{pad/naar/geïnstalleerde_bibliotheek.la}}
libtool --mode=clean rm {{pad/naar/bron.lo}} {{pad/naar/bibliotheek.la}}