• Show log

    Commit

  • Hash : f40d0b28
    Author : Alexandre Duret-Lutz
    Date : 2002-06-30T22:44:13

    * automake.in (am_macro_for_var, ac_macro_for_var,
    required_variables): New variables.
    (am_c_prototypes, seen_prog_lex, am_lispdir_location,
    pythondir_location): Remove.
    (initialize_per_input): Clear %required_variables.
    (require_variables, require_variables_for_macro): New functions.
    (handle_languages): Call &require_variables for $lang->config_vars.
    (handle_compile): Call &require_variables_for_macro for the
    ANSI2KNR and U variables.
    (handle_emacs_lisp): Call &require_variables for EMACS and libdir.
    (handle_python): Call &require_variables for PYTHON.  Don't
    explicitly allow `python' as a prefix for PYTHON.
    (scan_autoconf_traces): Don't scan AC_PROG_LEX, AM_C_PROTOTYPES,
    AM_PATH_LISPDIR, and AM_PATH_PYTHON.
    (scan_autoconf_traces) <AC_SUBST>: Don't filter out ANSI2KNR and
    AMDEPBACKSLASH here...
    (define_configure_variable): ... do this here.
    (am_primary_prefixes): Probe the existence of ${X}dir using
    &require_variables_for_macro.  If a standard prefix is not
    legitimate, say so.  Ignore all configure variables.
    * tests/ansi8.test, tests/cxx2.test, tests/gcj5.test,
    tests/lisp2.test, tests/python2.test: New files
    * tests/Makefile.am (TESTS): Add them.
    * tests/asm.test: Grep stderr.
    * tests/lex2.test: Rewrite to test that Automake suggests AM_PROG_LEX.
    * tests/python.test: Make sure py-compile is installed.
    

  • README

  • This is Automake, a Makefile generator.  It was inspired by the 4.4BSD
    make and include files, but aims to be portable and to conform to the
    GNU standards for Makefile variables and targets.
    
    Automake is a Perl script.  The input files are called Makefile.am.
    The output files are called Makefile.in; they are intended for use
    with Autoconf.  Automake requires certain things to be done in your
    configure.in.
    
    Variable assignment lines in Makefile.am pull in defaults from various
    little *.am files.
    
    To use Automake, replace your Makefile.in files with Makefile.am
    files.  Read the documentation to see what to do.
    
    This package also includes the "aclocal" program.  aclocal is a
    program to generate an `aclocal.m4' based on the contents of
    `configure.in'.  It is useful as an extensible, maintainable mechanism
    for augmenting autoconf.  It is intended that other package authors
    will write m4 macros which can be automatically used by aclocal.
    
    The mailing list automake@gnu.org is for discussion of
    Automake, Autoconf, and other configuration/portability tools (e.g.,
    libtool).  Write to automake-request@gnu.org if you want to
    join.
    
    Automake has a page on the web.  See:
    
    	http://sources.redhat.com/automake/
    
    Mail suggestions and bug reports to bug-automake@gnu.org.
    
    -----
    
    Copyright 1994, 1995, 1996, 1997, 1998, 2001 Free Software Foundation,
    Inc.
    
    This file is part of GNU Automake.
    
    GNU Automake is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2, or (at your option)
    any later version.
    
    GNU Automake is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
    
    You should have received a copy of the GNU General Public License
    along with autoconf; see the file COPYING.  If not, write to
    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.