Forrest logo
back to context overview

autoconf

List of commands for autoconf:

  • autoconf:tldr:1a56b autoconf: Generate a configuration script from `configure.ac` (if present) or `configure.in` and save this script to `configure`.
    $ autoconf
    try on your machine
    explain this command
  • autoconf:tldr:664d5 autoconf: Generate a configuration script from the specified template; output to `stdout`.
    $ autoconf ${template-file}
    try on your machine
    explain this command
  • autoconf:tldr:ae708 autoconf: Generate a configuration script from the specified template (even if the input file has not changed) and write the output to a file.
    $ autoconf --force --output=${outfile} ${template-file}
    try on your machine
    explain this command
back to context overview