[3120] | 1 | This is Automake, a Makefile generator. It was inspired by the 4.4BSD
|
---|
| 2 | make and include files, but aims to be portable and to conform to the
|
---|
| 3 | GNU standards for Makefile variables and targets.
|
---|
| 4 |
|
---|
| 5 | Automake is a Perl script. The input files are called Makefile.am.
|
---|
| 6 | The output files are called Makefile.in; they are intended for use
|
---|
| 7 | with Autoconf. Automake requires certain things to be done in your
|
---|
| 8 | configure.in.
|
---|
| 9 |
|
---|
| 10 | Variable assignment lines in Makefile.am pull in defaults from various
|
---|
| 11 | little *.am files.
|
---|
| 12 |
|
---|
| 13 | To use Automake, replace your Makefile.in files with Makefile.am
|
---|
| 14 | files. Read the documentation to see what to do.
|
---|
| 15 |
|
---|
| 16 | This package also includes the "aclocal" program. aclocal is a
|
---|
| 17 | program to generate an `aclocal.m4' based on the contents of
|
---|
| 18 | `configure.in'. It is useful as an extensible, maintainable mechanism
|
---|
| 19 | for augmenting autoconf. It is intended that other package authors
|
---|
| 20 | will write m4 macros which can be automatically used by aclocal.
|
---|
| 21 |
|
---|
| 22 | The mailing list automake@gnu.org is for discussion of
|
---|
| 23 | Automake, Autoconf, and other configuration/portability tools (e.g.,
|
---|
| 24 | libtool). Write to automake-request@gnu.org if you want to
|
---|
| 25 | join.
|
---|
| 26 |
|
---|
| 27 | Automake has a page on the web. See:
|
---|
| 28 |
|
---|
| 29 | http://sources.redhat.com/automake/
|
---|
| 30 |
|
---|
| 31 | Mail suggestions and bug reports to bug-automake@gnu.org.
|
---|
| 32 |
|
---|
| 33 | -----
|
---|
| 34 |
|
---|
| 35 | Copyright 1994, 1995, 1996, 1997, 1998, 2001 Free Software Foundation,
|
---|
| 36 | Inc.
|
---|
| 37 |
|
---|
| 38 | This file is part of GNU Automake.
|
---|
| 39 |
|
---|
| 40 | GNU Automake is free software; you can redistribute it and/or modify
|
---|
| 41 | it under the terms of the GNU General Public License as published by
|
---|
| 42 | the Free Software Foundation; either version 2, or (at your option)
|
---|
| 43 | any later version.
|
---|
| 44 |
|
---|
| 45 | GNU Automake is distributed in the hope that it will be useful,
|
---|
| 46 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 47 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 48 | GNU General Public License for more details.
|
---|
| 49 |
|
---|
| 50 | You should have received a copy of the GNU General Public License
|
---|
| 51 | along with autoconf; see the file COPYING. If not, write to
|
---|
| 52 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
---|
| 53 | Boston, MA 02111-1307, USA.
|
---|