.\" Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc. .\" Copyright (C) 1998 Ben Pfaff. .\" .\" Permission is granted to make and distribute verbatim copies of .\" this manual provided the copyright notice and this permission notice .\" are preserved on all copies. .\" .\" Permission is granted to copy and distribute modified versions of this .\" manual under the conditions for verbatim copying, provided that the entire .\" resulting derived work is distributed under the terms of a permission .\" notice identical to this one. .\" .\" Permission is granted to copy and distribute translations of this manual .\" into another language, under the above conditions for modified versions, .\" except that this permission notice may be stated in a translation approved .\" by the Foundation. .\" .TH AUTOCONF 1 "Autoconf" .SH NAME autoconf2.13 - creates scripts to configure source code packages using templates .SH SYNOPSIS .B autoconf2.13 [ .B --help | .B -h ] [ .B --localdir=dir | .B -l dir ] [ .B --macrodir=dir | .B -m dir ] [ .B --version ] .SH DESCRIPTION .PP To create .B configure from \fBconfigure.in\fP, run the .B autoconf2.13 program with no arguments. .B autoconf2.13 processes .B configure.in with the .B m4 macro processor, using the Autoconf macros. If you give .B autoconf2.13 an argument, it reads that file instead of .B configure.in and writes the configuration script to the standard output instead of to .BR configure . If you give .B autoconf2.13 the argument .BR - , it reads the standard input instead of .B configure.in and writes the configuration script on the standard output. .PP The Autoconf macros are defined in several files. Some of the files are distributed with Autoconf; .B autoconf2.13 reads them first. Then it looks for the optional file .B acsite.m4 in the directory that contains the distributed Autoconf macro files, and for the optional file .B aclocal.m4 in the current directory. Those files can contain your site's or the package's own Autoconf macro definitions. If a macro is defined in more than one of the files that .B autoconf2.13 reads, the last definition it reads overrides the earlier ones. .PP .B autoconf2.13 accepts the following options: .TP .BI --help .TP .BI -h Print a summary of the command line options and exit. .TP .BI --localdir=DIR .TP .BI -l\ DIR Look for the package file .B aclocal.m4 in directory DIR instead of in the current directory. .TP .BI --macrodir=DIR .TP .BI -m\ DIR Look for the installed macro files in directory DIR. You can also set the .B AC_MACRODIR environment variable to a directory; this option overrides the environment variable. .TP .BI --version Print the version number of Autoconf and exit. .PP .SH "SEE ALSO" .BR autoheader2.13 (1), .BR autoreconf2.13 (1), .BR autoscan2.13 (1), .BR autoupdate2.13 (1), .BR ifnames2.13 (1) .SH AUTHORS David MacKenzie, with help from Franc,ois Pinard, Karl Berry, Richard Pixley, Ian Lance Taylor, Roland McGrath, Noah Friedman, David D. Zuhn, and many others. This manpage written by Ben Pfaff for the Debian GNU/Linux .B autoconf2.13 package.