automake-desc.xml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <sect2>
  2. <title>Contents</title>
  3. <para>
  4. The Automake package contains the aclocal and automake programs
  5. </para>
  6. </sect2>
  7. <sect2><title>Description</title>
  8. <sect3><title>aclocal</title>
  9. <para>
  10. Automake includes a number of Autoconf macros which can be used in
  11. packages; some of them are actually required by Automake in certain
  12. situations. These macros must be defined in the aclocal.m4-file;
  13. otherwise they will not be seen by autoconf.
  14. </para>
  15. <para>
  16. The aclocal program will automatically generate aclocal.m4 files
  17. based on the contents of configure.in. This provides a convenient
  18. way to get Automake-provided macros, without having to search around.
  19. Also, the aclocal mechanism is extensible for use by other packages.
  20. </para>
  21. </sect3>
  22. <sect3><title>automake</title>
  23. <para>
  24. To create all the Makefile.in's for a package, run the automake
  25. program in the top level directory, with no arguments. automake will
  26. automatically find each appropriate Makefile.am (by scanning
  27. configure.in) and generate the corresponding Makefile.in.
  28. </para>
  29. </sect3>
  30. </sect2>