[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Automake will also recognize the use of certain macros and tailor the generated `Makefile.in' appropriately. Currently recognized macros and their effects are:
AC_CONFIG_HEADER
AM_CONFIG_HEADER
(see section 5.4 Autoconf macros supplied with Automake),
which is similar to AC_CONFIG_HEADER
(see section `Configuration Header Files' in The Autoconf Manual),
but does some useful Automake-specific work.
AC_CONFIG_AUX_DIR
AC_PATH_XTRA
AC_PATH_XTRA
into each `Makefile.in' that builds a C program
or library. See section `System Services' in The Autoconf Manual.
AC_CANONICAL_HOST
AC_CANONICAL_SYSTEM
AC_CANONICAL_HOST
, but also defines the
`Makefile' variables `build_alias' and `target_alias'.
See section `Getting the Canonical System Type' in The Autoconf Manual.
AC_FUNC_ALLOCA
AC_FUNC_ERROR_AT_LINE
AC_FUNC_FNMATCH
AC_FUNC_GETLOADAVG
AC_FUNC_MEMCMP
AC_FUNC_MKTIME
AC_FUNC_OBSTACK
AC_FUNC_STRTOD
AC_REPLACE_FUNCS
AC_REPLACE_GNU_GETOPT
AC_STRUCT_ST_BLOCKS
AM_WITH_REGEX
automake -a
will not install the sources.
See section 9.2 Building a library, for more information. Also, see section `Particular Function Checks' in The Autoconf Manual.
AC_LIBOBJ
LIBOBJS
AC_LIBSOURCE
AC_LIBSOURCES
LIBOBJS
, or pass `.o' files to AC_LIBOBJ
, and will
treat these additional files as if they were discovered via
AC_REPLACE_FUNCS
. Similarly, Automake will also distribute file
listed in AC_LIBSOURCE
and AC_LIBSOURCES
.
Note that assignments to LIBOBJS
is a construct which is being
phased out; they will be ignored in a future release of Automake. You
should call the AC_LIBOBJ
macro instead. See section `Generic Function Checks' in The Autoconf Manual.
AC_PROG_RANLIB
AC_PROG_CXX
AC_PROG_F77
AC_F77_LIBRARY_LDFLAGS
AC_PROG_LIBTOOL
libtool
(see section `Introduction' in The Libtool Manual).
AC_PROG_YACC
AC_PROG_LEX
AM_C_PROTOTYPES
AM_GNU_GETTEXT
AM_MAINTAINER_MODE
configure
. If this is used, automake
will cause
`maintainer-only' rules to be turned off by default in the
generated `Makefile.in's. This macro is disallowed in `Gnits'
mode (see section 21. The effect of --gnu
and --gnits
). This macro defines the `MAINTAINER_MODE'
conditional, which you can use in your own `Makefile.am'.
AC_SUBST
AC_CHECK_TOOL
AC_CHECK_PROG
AC_CHECK_PROGS
AC_PATH_PROG
AC_PATH_PROGS
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |