README 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. This is Automake, a Makefile generator. It aims to be portable and
  2. to conform to the GNU Coding Standards for Makefile variables and
  3. targets.
  4. See the INSTALL file for detailed information about how to configure
  5. and install Automake.
  6. Automake is a Perl script. The input files are called Makefile.am.
  7. The output files are called Makefile.in; they are intended for use
  8. with Autoconf. Automake requires certain things to be done in your
  9. configure.ac.
  10. Automake comes with extensive documentation; please refer to it for
  11. more details about its purpose, features, and usage patterns.
  12. This package also includes the "aclocal" program, whose purpose is
  13. to generate an 'aclocal.m4' based on the contents of 'configure.ac'.
  14. It is useful as an extensible, maintainable mechanism for augmenting
  15. autoconf. It is intended that other package authors will write m4
  16. macros which can be automatically used by aclocal. The documentation
  17. for aclocal is currently found in the Automake manual.
  18. Automake has a test suite. Use "make check" to run it. For more
  19. information, see the file t/README.
  20. Automake has a page on the web. See:
  21. http://www.gnu.org/software/automake/
  22. Automake also has three mailing lists:
  23. * automake@gnu.org
  24. For general discussions of Automake and its interactions with other
  25. configuration/portability tools like Autoconf or Libtool.
  26. * bug-automake@gnu.org
  27. Where to send bug reports and feature requests.
  28. * automake-patches@gnu.org
  29. Where to send patches, and discuss the automake development process
  30. and the design of new features.
  31. To obtain more information about these list, or to subscribe to them,
  32. refer to <http://www.gnu.org/software/automake/#mailinglists>
  33. New releases are announced to autotools-announce@gnu.org. If you want to
  34. be informed, subscribe to that list by following the instructions at
  35. <http://lists.gnu.org/mailman/listinfo/autotools-announce>.
  36. For any copyright year range specified as YYYY-ZZZZ in this package,
  37. that the range specifies every single year in that closed interval.
  38. -----
  39. Copyright (C) 1994-2012 Free Software Foundation, Inc.
  40. This program 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. This program is distributed in the hope that it will be useful,
  45. but WITHOUT ANY WARRANTY; without even the implied warranty of
  46. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  47. GNU General Public License for more details.
  48. You should have received a copy of the GNU General Public License
  49. along with this program. If not, see <http://www.gnu.org/licenses/>.