DESCR 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Autoconf, Automake and Libtool are packages for making your software
  2. more portable and to simplify building it--usually on someone else's
  3. system. Software portability and effective build systems are crucial
  4. aspects of modern software engineering practice. It is unlikely
  5. that a software project would be started today with the expectation
  6. that the software would run on only one platform. Hardware constraints
  7. may change the choice of platform, new customers with different
  8. kinds of systems may emerge or your vendor might introduce incompatible
  9. changes in newer versions of their operating system. In addition,
  10. tools that make building software easier and less error prone are
  11. valuable.
  12. Autoconf is a tool that helps make your packages more portable by
  13. performing tests to discover system characteristics before the
  14. package is compiled. Your source code can then adapt to these
  15. differences.
  16. Automake is a tool for generating Makefiles--descriptions of what
  17. to build--that conform to a number of standards. Automake substantially
  18. simplifies the process of describing the organization of a package
  19. and performs additional functions such as dependency tracking between
  20. source files.
  21. Libtool is a command line interface to the compiler and linker that
  22. makes it easy to portably generate static and shared libraries,
  23. regardless of the platform it is running on.
  24. This book is a tutorial for Autoconf, Automake and Libtool, hereafter
  25. referred to as the GNU Autotools. The GNU manuals that accompany
  26. each tools adequately document each tool in isolation. Until now,
  27. there has not been a guide that has described how these tools work
  28. together.
  29. Thanks go to New Riders (www.newriders.com) for allowing this
  30. document to be licensed under the Open Publication License and
  31. redistributed freely.
  32. Copyright (c) 2000 by Gary V. Vaughan, Ben Elliston, Tom Tromey and
  33. Ian Lance Taylor. This material may be distributed only subject to
  34. the terms and conditions set forth in the Open Publication License,
  35. draft v1.0 or later (the latest version is presently available at
  36. http://www.opencontent.org/openpub/).