1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:02:09 +02:00

autoconf: add page (#8508)

This commit is contained in:
Juri 2022-09-24 03:45:08 +02:00 committed by GitHub
parent 0435ed4d01
commit 4066cb9dac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
pages/common/autoconf.md Normal file
View file

@ -0,0 +1,16 @@
# autoconf
> Generate configuration scripts to automatically configure software source code packages.
> More information: <https://www.gnu.org/software/autoconf>.
- Generate a configuration script from `configure.ac` (if present) or `configure.in` and save this script to `configure`:
`autoconf`
- Generate a configuration script from the specified template; output to stdout:
`autoconf {{template-file}}`
- 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}}`