HPR3040: Why use GNU Autotools

Published: March 27, 2020, midnight

GNU Autotools is a build system that helps you distribute your code in a predictable and reliable way. Build systems offer many benefits, including:

  1. Standard and automate-able build process
  2. hooks into packaging systems (RPM, DEB, Slackbuilds, Flatpak, Snap, and so on)
  3. version reporting
  4. build for various OSes
  5. you get lots of code to handle every possible corner case, for free
  6. with a single configuration, you can build your project as the developer, build it for packagers, and enable users to build it for themselves

Next up: how to use GNU Autotools