Skip to content

Instantly share code, notes, and snippets.

@startergo
Last active November 15, 2024 10:59
Show Gist options
  • Save startergo/ec7c4e9abf12e131a893c3e9142fcfa0 to your computer and use it in GitHub Desktop.
Save startergo/ec7c4e9abf12e131a893c3e9142fcfa0 to your computer and use it in GitHub Desktop.
How to use Automake
  • Install Autotools
  • Use autoreconf -vfi so that it runs all the relevant tools in the right order, and installs the missing files
  • Run:
aclocal
automake
autoconf
  • Configure the build:
./configure
  • Make the targets:
make
make check
  • Install the binaries:
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment