Makefile.in
To create all the Makefile.in
s for a package, run the
automake
program in the top level directory, with no arguments.
automake
will automatically find each appropriate
Makefile.am
(by scanning configure.in
; see configure)
and generate the corresponding Makefile.in
. Note that
automake
has a rather simplistic view of what constitutes a
package; it assumes that a package has only one configure.in
, at
the top. If your package has multiple configure.in
s, then you
must run automake
in each directory holding a
configure.in
. (Alternatively, you may rely on Autoconf's
autoreconf
, which is able to recurse your package tree and run
automake
where appropriate.)
You can optionally give automake
an argument; .am
is
appended to the argument and the result is used as the name of the input
file. This feature is generally only used to automatically rebuild an
out-of-date Makefile.in
. Note that automake
must always
be run from the topmost directory of a project, even if being used to
regenerate the Makefile.in
in some subdirectory. This is
necessary because automake
must scan configure.in
, and
because automake
uses the knowledge that a Makefile.in
is
in a subdirectory to change its behavior in some cases.
Automake will run autoconf
to scan configure.in
and its
dependencies (aclocal.m4
), therefore autoconf
must be in
your PATH
. If there is an AUTOCONF
variable in your
environment it will be used instead of autoconf
, this allows you
to select a particular version of Autoconf. By the way, don't
misunderstand this paragraph: Automake runs autoconf
to
scan your configure.in
, this won't build
configure
and you still have to run autoconf
yourself for
this purpose.
automake
accepts the following options:
-a
--add-missing
config.guess
is required if configure.in
runs
AC_CANONICAL_HOST
. Automake is distributed with several of these
files (see Auxiliary Programs); this option will cause the missing
ones to be automatically added to the package, whenever possible. In
general if Automake tells you a file is missing, try using this option.
By default Automake tries to make a symbolic link pointing to its own
copy of the missing file; this can be changed with --copy
.
Many of the potentially-missing files are common scripts whose
location may be specified via the AC_CONFIG_AUX_DIR
macro.
Therefore, AC_CONFIG_AUX_DIR
's setting affects whether a
file is considered missing, and where the missing file is added
(see Optional).
--libdir=
dir
-c
--copy
--add-missing
, causes installed files to be
copied. The default is to make a symbolic link.
--cygnus
Makefile.in
s to follow Cygnus rules, instead
of GNU or Gnits rules. For more information, see Cygnus.
-f
--force-missing
--add-missing
, causes standard files to be reinstalled
even if they already exist in the source tree. This involves removing
the file from the source tree before creating the new symlink (or, with
--copy
, copying the new file).
--foreign
foreign
. For more information, see
Strictness.
--gnits
gnits
. For more information, see
Gnits.
--gnu
gnu
. For more information, see
Gnits. This is the default strictness.
--help
-i
--ignore-deps
Makefile
s; see Dependencies.
--include-deps
--no-force
automake
creates all Makefile.in
s mentioned in
configure.in
. This option causes it to only update those
Makefile.in
s which are out of date with respect to one of their
dependents.
Due to a bug in its implementation, this option is currently ignored.
It will be fixed in Automake 1.8.
-o
dir
--output-dir=
dir
Makefile.in
in the directory dir.
Ordinarily each Makefile.in
is created in the directory of the
corresponding Makefile.am
. This option is deprecated and will be
removed in a future release.
-v
--verbose
--version
-W CATEGORY
--warnings=
category
gnu
obsolete
portability
syntax
unsupported
all
none
error
A category can be turned off by prefixing its name with no-
. For
instance -Wno-syntax
will hide the warnings about unused
variables.
The categories output by default are syntax
and
unsupported
. Additionally, gnu
is enabled in --gnu
and
--gnits
strictness.
portability
warnings are currently disabled by default, but they
will be enabled in --gnu
and --gnits
strictness in a
future release.
The environment variable WARNINGS
can contain a comma separated
list of categories to enable. It will be taken into account before the
command-line switches, this way -Wnone
will also ignore any
warning category enabled by WARNINGS
. This variable is also used
by other tools like autoconf
; unknown categories are ignored
for this reason.