+2000-10-26 Pavel Roskin <proski@gnu.org>
+
+ * autoconf.sh: Don't show obsolete options on "--help". Report
+ obsolete options to stderr. Adjust list of options. Correct
+ processing of options. Process options with values separated by
+ "=" first, so that abbreviations work. Don't accept "=" with
+ short options.
+ * autoheader.sh: Likewise.
+ * autoreconf.sh: Likewise.
+ * autoupdate.sh: Likewise.
+ * ifnames.sh: There is no "--verbose" option.
+ * doc/autoconf.texi: Option "-A" requires an argument.
+ (autoreconf Invocation): Document "--install", "--symlink",
+ "--m4dir" and the options passed to Automake.
+
2000-10-26 Akim Demaille <akim@epita.fr>
* shell.m4: Rename as...
-V, --version print version number, then exit
-v, --verbose verbosely report processing
-d, --debug don't remove temporary files
- -m, --macrodir=DIR directory storing Autoconf's macro files
- -l, --localdir=DIR directory storing the \`aclocal.m4' file
-o, --output=FILE save output in FILE (stdout is the default)
-W, --warnings=CATEGORY report the warnings falling in CATEGORY [syntax]
The environment variable \`WARNINGS' is honored.
+Library directories:
+ -A, --autoconf-dir=ACDIR Autoconf's macro files location (rarely needed)
+ -l, --localdir=DIR location of the \`aclocal.m4' file
+
Tracing:
-t, --trace=MACRO report the list of calls to MACRO
-i, --initialization also trace Autoconf's initialization process
localdir=$1
shift ;;
- --autoconf-dir=*)
+ --autoconf-dir=* | --a*=* )
autoconf_dir=$optarg
shift ;;
- --autoconf-dir | -A* )
+ --autoconf-dir | --a* | -A )
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
--macrodir=* | --m*=* )
- echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&1
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
--macrodir | --m* | -m )
- echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&1
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
- --trace | -t )
+ --trace=* | --t*=* )
+ task=trace
+ traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
+ shift ;;
+ --trace | --t* | -t )
test $# = 1 && eval "$exit_missing_arg"
task=trace
shift
traces="$traces '"`echo "$1" | sed "s/'/'\\\\\\\\''/g"`"'"
shift ;;
- --trace=* )
- task=trace
- traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
- shift ;;
- --initialization | -i )
+ --initialization | --i* | -i )
initialization=:
shift;;
- --output | -o )
+ --output=* | --o*=* )
+ outfile=$optarg
+ shift ;;
+ --output | --o* | -o )
test $# = 1 && eval "$exit_missing_arg"
shift
outfile=$1
shift ;;
- --output=* )
- outfile=$optarg
- shift ;;
- -o* )
- outfile=$optarg
- shift ;;
- --warnings | -W )
+ --warnings=* | --w*=* )
+ warnings=$warnings,$optarg
+ shift ;;
+ --warnings | --w* | -W )
test $# = 1 && eval "$exit_missing_arg"
shift
warnings=$warnings,$1
shift ;;
- --warnings=* | -W* )
- warnings=$warnings,$optarg
- shift ;;
-- ) # Stop option processing
shift; break ;;
-V, --version print version number, then exit
-v, --verbose verbosely report processing
-d, --debug don't remove temporary files
- -m, --macrodir=DIR directory storing Autoconf's macro files
- -l, --localdir=DIR directory storing the \`aclocal.m4' file
-o, --output=FILE save output in FILE (stdout is the default)
-W, --warnings=CATEGORY report the warnings falling in CATEGORY [syntax]
The environment variable \`WARNINGS' is honored.
+Library directories:
+ -A, --autoconf-dir=ACDIR Autoconf's macro files location (rarely needed)
+ -l, --localdir=DIR location of the \`aclocal.m4' file
+
Tracing:
-t, --trace=MACRO report the list of calls to MACRO
-i, --initialization also trace Autoconf's initialization process
localdir=$1
shift ;;
- --autoconf-dir=*)
+ --autoconf-dir=* | --a*=* )
autoconf_dir=$optarg
shift ;;
- --autoconf-dir | -A* )
+ --autoconf-dir | --a* | -A )
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
--macrodir=* | --m*=* )
- echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&1
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
--macrodir | --m* | -m )
- echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&1
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
- --trace | -t )
+ --trace=* | --t*=* )
+ task=trace
+ traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
+ shift ;;
+ --trace | --t* | -t )
test $# = 1 && eval "$exit_missing_arg"
task=trace
shift
traces="$traces '"`echo "$1" | sed "s/'/'\\\\\\\\''/g"`"'"
shift ;;
- --trace=* )
- task=trace
- traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
- shift ;;
- --initialization | -i )
+ --initialization | --i* | -i )
initialization=:
shift;;
- --output | -o )
+ --output=* | --o*=* )
+ outfile=$optarg
+ shift ;;
+ --output | --o* | -o )
test $# = 1 && eval "$exit_missing_arg"
shift
outfile=$1
shift ;;
- --output=* )
- outfile=$optarg
- shift ;;
- -o* )
- outfile=$optarg
- shift ;;
- --warnings | -W )
+ --warnings=* | --w*=* )
+ warnings=$warnings,$optarg
+ shift ;;
+ --warnings | --w* | -W )
test $# = 1 && eval "$exit_missing_arg"
shift
warnings=$warnings,$1
shift ;;
- --warnings=* | -W* )
- warnings=$warnings,$optarg
- shift ;;
-- ) # Stop option processing
shift; break ;;
-W, --warnings=CATEGORY report the warnings falling in CATEGORY
Warning categories include:
- \`obsolete' obsolete constructs
- \`all' all the warnings
- \`error' warnings are error
+ \`obsolete' obsolete constructs
+ \`all' all the warnings
+ \`no-CATEGORY' turn off the warnings on CATEGORY
+ \`none' turn off all the warnings
+ \`error' warnings are error
Library directories:
-A, --autoconf-dir=ACDIR Autoconf's macro files location (rarely needed)
localdir=$1
shift ;;
- --autoconf-dir=*)
+ --autoconf-dir=* | --a*=* )
autoconf_dir=$optarg
shift ;;
- --autoconf-dir | -A* )
+ --autoconf-dir | --a* | -A )
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
--macrodir=* | --m*=* )
- echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&1
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
--macrodir | --m* | -m )
- echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&1
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
- --warnings | -W )
+ --warnings=* | --w*=* )
+ warnings=$warnings,$optarg
+ shift ;;
+ --warnings | --w* | -W )
test $# = 1 && eval "$exit_missing_arg"
shift
warnings=$warnings,$1
shift ;;
- --warnings=* | -W*)
- warnings=$warnings,$optarg
- shift ;;
-- ) # Stop option processing
shift; break ;;
-W, --warnings=CATEGORY report the warnings falling in CATEGORY
Warning categories include:
- \`obsolete' obsolete constructs
- \`all' all the warnings
- \`error' warnings are error
+ \`obsolete' obsolete constructs
+ \`all' all the warnings
+ \`no-CATEGORY' turn off the warnings on CATEGORY
+ \`none' turn off all the warnings
+ \`error' warnings are error
Library directories:
-A, --autoconf-dir=ACDIR Autoconf's macro files location (rarely needed)
localdir=$1
shift ;;
- --autoconf-dir=*)
+ --autoconf-dir=* | --a*=* )
autoconf_dir=$optarg
shift ;;
- --autoconf-dir | -A* )
+ --autoconf-dir | --a* | -A )
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
--macrodir=* | --m*=* )
- echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&1
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
--macrodir | --m* | -m )
- echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&1
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
- --warnings | -W )
+ --warnings=* | --w*=* )
+ warnings=$warnings,$optarg
+ shift ;;
+ --warnings | --w* | -W )
test $# = 1 && eval "$exit_missing_arg"
shift
warnings=$warnings,$1
shift ;;
- --warnings=* | -W*)
- warnings=$warnings,$optarg
- shift ;;
-- ) # Stop option processing
shift; break ;;
Library directories:
-A, --autoconf-dir=ACDIR Autoconf's macro files location (rarely needed)
- -m, --macro-path=PATH library extensions files
-l, --localdir=DIR location of \`aclocal.m4' and \`acconfig.h'
-M, --m4dir=M4DIR this package's Autoconf extensions
--gnits set strictness to gnits
--gnu set strictness to gnu
--include-deps include generated dependencies in Makefile.in
- -i deprecated alias for --include-deps
The environment variables AUTOCONF, AUTOHEADER, AUTOMAKE, and ACLOCAL
are honored.
localdir=$1
shift ;;
- --macrodir | -m )
+ --autoconf-dir=*)
+ autoconf_dir=$optarg
+ shift ;;
+ --autoconf-dir | -A* )
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
- --macrodir=* | -m* )
+ --macrodir=* | --m*=* )
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
+ --macrodir | --m* | -m )
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
+ test $# = 1 && eval "$exit_missing_arg"
+ shift
+ autoconf_dir=$1
+ shift ;;
--m4dir | -M )
test $# = 1 && eval "$exit_missing_arg"
m4dir=$optarg
shift ;;
- --force | -f )
+ --force | --forc* | -f )
force=:; shift ;;
- --install | -i )
+ --install | --ins* | -i )
install=:; shift ;;
- --symlink | --symbolic | -s )
+ --symlink | --s* | -s )
symlink=:; shift ;;
# Options of Automake.
Library directories:
-A, --autoconf-dir=ACDIR Autoconf's macro files location (rarely needed)
- -m, --macro-path=PATH library extensions files
-l, --localdir=DIR location of \`aclocal.m4' and \`acconfig.h'
-M, --m4dir=M4DIR this package's Autoconf extensions
--gnits set strictness to gnits
--gnu set strictness to gnu
--include-deps include generated dependencies in Makefile.in
- -i deprecated alias for --include-deps
The environment variables AUTOCONF, AUTOHEADER, AUTOMAKE, and ACLOCAL
are honored.
localdir=$1
shift ;;
- --macrodir | -m )
+ --autoconf-dir=*)
+ autoconf_dir=$optarg
+ shift ;;
+ --autoconf-dir | -A* )
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
- --macrodir=* | -m* )
+ --macrodir=* | --m*=* )
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
+ --macrodir | --m* | -m )
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
+ test $# = 1 && eval "$exit_missing_arg"
+ shift
+ autoconf_dir=$1
+ shift ;;
--m4dir | -M )
test $# = 1 && eval "$exit_missing_arg"
m4dir=$optarg
shift ;;
- --force | -f )
+ --force | --forc* | -f )
force=:; shift ;;
- --install | -i )
+ --install | --ins* | -i )
install=:; shift ;;
- --symlink | --symbolic | -s )
+ --symlink | --s* | -s )
symlink=:; shift ;;
# Options of Automake.
-V, --version print version number, then exit
-v, --verbose verbosely report processing
-d, --debug don't remove temporary files
- -m, --macrodir=DIR directory storing Autoconf's macro files
- -l, --localdir=DIR directory storing the \`aclocal.m4' file
-o, --output=FILE save output in FILE (stdout is the default)
-W, --warnings=CATEGORY report the warnings falling in CATEGORY [syntax]
The environment variable \`WARNINGS' is honored.
+Library directories:
+ -A, --autoconf-dir=ACDIR Autoconf's macro files location (rarely needed)
+ -l, --localdir=DIR location of the \`aclocal.m4' file
+
Tracing:
-t, --trace=MACRO report the list of calls to MACRO
-i, --initialization also trace Autoconf's initialization process
localdir=$1
shift ;;
- --autoconf-dir=*)
+ --autoconf-dir=* | --a*=* )
autoconf_dir=$optarg
shift ;;
- --autoconf-dir | -A* )
+ --autoconf-dir | --a* | -A )
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
--macrodir=* | --m*=* )
- echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&1
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
--macrodir | --m* | -m )
- echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&1
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
- --trace | -t )
+ --trace=* | --t*=* )
+ task=trace
+ traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
+ shift ;;
+ --trace | --t* | -t )
test $# = 1 && eval "$exit_missing_arg"
task=trace
shift
traces="$traces '"`echo "$1" | sed "s/'/'\\\\\\\\''/g"`"'"
shift ;;
- --trace=* )
- task=trace
- traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
- shift ;;
- --initialization | -i )
+ --initialization | --i* | -i )
initialization=:
shift;;
- --output | -o )
+ --output=* | --o*=* )
+ outfile=$optarg
+ shift ;;
+ --output | --o* | -o )
test $# = 1 && eval "$exit_missing_arg"
shift
outfile=$1
shift ;;
- --output=* )
- outfile=$optarg
- shift ;;
- -o* )
- outfile=$optarg
- shift ;;
- --warnings | -W )
+ --warnings=* | --w*=* )
+ warnings=$warnings,$optarg
+ shift ;;
+ --warnings | --w* | -W )
test $# = 1 && eval "$exit_missing_arg"
shift
warnings=$warnings,$1
shift ;;
- --warnings=* | -W* )
- warnings=$warnings,$optarg
- shift ;;
-- ) # Stop option processing
shift; break ;;
-W, --warnings=CATEGORY report the warnings falling in CATEGORY
Warning categories include:
- \`obsolete' obsolete constructs
- \`all' all the warnings
- \`error' warnings are error
+ \`obsolete' obsolete constructs
+ \`all' all the warnings
+ \`no-CATEGORY' turn off the warnings on CATEGORY
+ \`none' turn off all the warnings
+ \`error' warnings are error
Library directories:
-A, --autoconf-dir=ACDIR Autoconf's macro files location (rarely needed)
localdir=$1
shift ;;
- --autoconf-dir=*)
+ --autoconf-dir=* | --a*=* )
autoconf_dir=$optarg
shift ;;
- --autoconf-dir | -A* )
+ --autoconf-dir | --a* | -A )
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
--macrodir=* | --m*=* )
- echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&1
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
--macrodir | --m* | -m )
- echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&1
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
- --warnings | -W )
+ --warnings=* | --w*=* )
+ warnings=$warnings,$optarg
+ shift ;;
+ --warnings | --w* | -W )
test $# = 1 && eval "$exit_missing_arg"
shift
warnings=$warnings,$1
shift ;;
- --warnings=* | -W*)
- warnings=$warnings,$optarg
- shift ;;
-- ) # Stop option processing
shift; break ;;
Library directories:
-A, --autoconf-dir=ACDIR Autoconf's macro files location (rarely needed)
- -m, --macro-path=PATH library extensions files
-l, --localdir=DIR location of \`aclocal.m4' and \`acconfig.h'
-M, --m4dir=M4DIR this package's Autoconf extensions
--gnits set strictness to gnits
--gnu set strictness to gnu
--include-deps include generated dependencies in Makefile.in
- -i deprecated alias for --include-deps
The environment variables AUTOCONF, AUTOHEADER, AUTOMAKE, and ACLOCAL
are honored.
localdir=$1
shift ;;
- --macrodir | -m )
+ --autoconf-dir=*)
+ autoconf_dir=$optarg
+ shift ;;
+ --autoconf-dir | -A* )
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
- --macrodir=* | -m* )
+ --macrodir=* | --m*=* )
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
+ --macrodir | --m* | -m )
+ echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
+ test $# = 1 && eval "$exit_missing_arg"
+ shift
+ autoconf_dir=$1
+ shift ;;
--m4dir | -M )
test $# = 1 && eval "$exit_missing_arg"
m4dir=$optarg
shift ;;
- --force | -f )
+ --force | --forc* | -f )
force=:; shift ;;
- --install | -i )
+ --install | --ins* | -i )
install=:; shift ;;
- --symlink | --symbolic | -s )
+ --symlink | --s* | -s )
symlink=:; shift ;;
# Options of Automake.
-h, --help print this help, then exit
-V, --version print version number, then exit
- -v, --verbose verbosely report processing
Report bugs to <bug-autoconf@gnu.org>."
symbols it finds in them. This output can be voluminous.
@item --autoconf-dir=@var{dir}
-@itemx -A
+@itemx -A @var{dir}
@evindex AC_MACRODIR
Overwrite the location where Autoconf files were installed. You can
also set the @code{AC_MACRODIR} environment variable to a directory;
Don't remove the temporary files.
@item --autoconf-dir=@var{dir}
-@itemx -A
+@itemx -A @var{dir}
@evindex AC_MACRODIR
Overwrite the location where Autoconf files were installed. You can
also set the @code{AC_MACRODIR} environment variable to a directory;
newer than their input files (@file{configure.in} and, if present,
@file{aclocal.m4}).
+@item --install
+@itemx -i
+Copy missing auxiliary files. This option is similar to the option
+@code{--add-missing} in @code{automake}.
+
+@item --symlink
+@itemx -s
+Instead of copying missing auxiliary files, install symbolic links.
+
@item --localdir=@var{dir}
@itemx -l @var{dir}
Have @code{autoconf} and @code{autoheader} look for the package files
@var{dir} instead of in the directory containing each @file{configure.in}.
@item --autoconf-dir=@var{dir}
-@itemx -A
+@itemx -A @var{dir}
@evindex AC_MACRODIR
Overwrite the location where Autoconf files were installed. You can
also set the @code{AC_MACRODIR} environment variable to a directory;
This option is rarely needed and dangerous: only when you play with
different versions of Autoconf.
+
+@item --m4dir=@var{dir}
+@itemx -M @var{dir}
+Specify location of additional macro files (@file{m4} by default).
+@end table
+
+Additionally, the following options are recognized and passed to
+@code{automake}:
+
+@table @option
+@item --cygnus
+Assume program is part of Cygnus-style tree.
+
+@item --foreign
+Set strictness to foreign.
+
+@item --gnits
+Set strictness to gnits.
+
+@item --gnu
+Set strictness to gnu.
+
+@item --include-deps
+Include generated dependencies in @file{Makefile.in}.
@end table
@itemx -d
Don't remove the temporary files.
+@item --verbose
+@itemx -v
+Report processing steps.
+
@item --autoconf-dir=@var{dir}
-@itemx -A
+@itemx -A @var{dir}
@evindex AC_MACRODIR
Overwrite the location where Autoconf files were installed. You can
also set the @code{AC_MACRODIR} environment variable to a directory;
Don't remove the temporary files.
@item --autoconf-dir=@var{dir}
-@itemx -A
+@itemx -A @var{dir}
@evindex AC_MACRODIR
Overwrite the location where Autoconf files were installed. You can
also set the @code{AC_MACRODIR} environment variable to a directory;
-h, --help print this help, then exit
-V, --version print version number, then exit
- -v, --verbose verbosely report processing
Report bugs to <bug-autoconf@gnu.org>."
-h, --help print this help, then exit
-V, --version print version number, then exit
- -v, --verbose verbosely report processing
Report bugs to <bug-autoconf@gnu.org>."
\fB\-d\fR, \fB\-\-debug\fR
don't remove temporary files
.TP
-\fB\-m\fR, \fB\-\-macrodir\fR=\fIDIR\fR
-directory storing Autoconf's macro files
-.TP
-\fB\-l\fR, \fB\-\-localdir\fR=\fIDIR\fR
-directory storing the `aclocal.m4' file
-.TP
\fB\-o\fR, \fB\-\-output\fR=\fIFILE\fR
save output in FILE (stdout is the default)
.TP
warnings are error
.PP
The environment variable `WARNINGS' is honored.
+.SS "Library directories:"
+.TP
+\fB\-A\fR, \fB\-\-autoconf\-dir\fR=\fIACDIR\fR
+Autoconf's macro files location (rarely needed)
+.TP
+\fB\-l\fR, \fB\-\-localdir\fR=\fIDIR\fR
+location of the `aclocal.m4' file
.SS "Tracing:"
.TP
\fB\-t\fR, \fB\-\-trace\fR=\fIMACRO\fR
`all'
all the warnings
.TP
+`no-CATEGORY'
+turn off the warnings on CATEGORY
+.TP
+`none'
+turn off all the warnings
+.TP
`error'
warnings are error
.SS "Library directories:"
\fB\-A\fR, \fB\-\-autoconf\-dir\fR=\fIACDIR\fR
Autoconf's macro files location (rarely needed)
.TP
-\fB\-m\fR, \fB\-\-macro\-path\fR=\fIPATH\fR
-library extensions files
-.TP
\fB\-l\fR, \fB\-\-localdir\fR=\fIDIR\fR
location of `aclocal.m4' and `acconfig.h'
.TP
.TP
\fB\-\-include\-deps\fR
include generated dependencies in Makefile.in
-.TP
-\fB\-i\fR
-deprecated alias for \fB\-\-include\-deps\fR
.PP
The environment variables AUTOCONF, AUTOHEADER, AUTOMAKE, and ACLOCAL
are honored.
.TP
\fB\-V\fR, \fB\-\-version\fR
print version number, then exit
-.TP
-\fB\-v\fR, \fB\-\-verbose\fR
-verbosely report processing
.SH AUTHOR
Written by David J. MacKenzie and Paul Eggert.
.PP