1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
.\" 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 AUTORECONF 1 "Autoconf"
.SH NAME
autoreconf2.13 - update configure scripts
.SH SYNOPSIS
.B autoreconf2.13
[
.B --help
|
.B -h
] [
.B --force
|
.B -f
] [
.B --localdir=dir
|
.B -l dir
] [
.B --macrodir=dir
|
.B -m dir
] [
.B --verbose
] [
.B --version
]
.SH DESCRIPTION
.PP
If you have a lot of Autoconf-generated
.B configure
scripts, the
.B autoreconf2.13
program can save you some work. It runs
.B autoconf2.13
(and
.BR autoheader2.13 ,
where appropriate) repeatedly to remake the Autoconf
.B configure
scripts and configuration header templates in the directory
tree rooted at the current directory. By default, it only remakes
those files that are older than their
.B configure.in
or (if present)
.BR aclocal.m4 .
Since
.B autoheader2.13
does not change the timestamp of its
output file if the file wouldn't be changing, this is not necessarily
the minimum amount of work. If you install a new version of Autoconf,
you can make
.B autoreconf2.13
remake
.I all
of the files by giving it the
.B --force
option.
.PP
If you give
.B autoreconf2.13
the
.B --macrodir=DIR
or
.B --localdir=DIR
options, it passes them down to
.B autoconf2.13
and
.B autoheader2.13
(with
relative paths adjusted properly).
.PP
.B autoreconf2.13
does not support having, in the same directory tree,
both directories that are parts of a larger package (sharing
.B aclocal.m4
and
.BR acconfig.h ),
and directories that are independent
packages (each with their own
.B aclocal.m4
and
.BR acconfig.h ).
It
assumes that they are all part of the same package, if you use
.BR --localdir ,
or that each directory is a separate package, if you
don't use it. This restriction may be removed in the future.
.PP
.B autoreconf2.13
accepts the following options:
.TP
.BI --help
.TP
.BI -h
Print a summary of the command line options and exit.
.TP
.BI --force
.TP
.BI -f
Remake even
.B configure
scripts and configuration headers that are
newer than their input files
.RB ( configure.in
and, if present,
.BR aclocal.m4 ).
.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 --verbose
Print the name of each directory where
.B autoreconf2.13
runs
.B autoconf2.13
(and
.BR autoheader2.13 ,
if appropriate).
.TP
.BI --version
Print the version number of Autoconf and exit.
.PP
.SH "SEE ALSO"
.BR autoconf2.13 (1),
.BR autoheader2.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
<pfaffben@debian.org> for the Debian GNU/Linux
.B autoconf2.13
package.
|