automake.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-system-automake" role="wrap">
  7. <title>Automake-&automake-version;</title>
  8. <?dbhtml filename="automake.html"?>
  9. <indexterm zone="ch-system-automake"><primary sortas="a-Automake">Automake</primary></indexterm>
  10. <sect2 role="package"><title/>
  11. <para>The Automake package contains programs for generating Makefiles for use
  12. with Autoconf.</para>
  13. <segmentedlist>
  14. <segtitle>&buildtime;</segtitle>
  15. <segtitle>&diskspace;</segtitle>
  16. <seglistitem><seg>0.2 SBU</seg><seg>6.8 MB</seg></seglistitem>
  17. </segmentedlist>
  18. <segmentedlist>
  19. <segtitle>Automake installation depends on</segtitle>
  20. <seglistitem><seg>Autoconf, Bash, Coreutils,
  21. Diffutils, Grep, M4, Make, Perl, and Sed</seg></seglistitem>
  22. </segmentedlist>
  23. </sect2>
  24. <sect2 role="installation">
  25. <title>Installation of Automake</title>
  26. <para>Prepare Automake for compilation:</para>
  27. <screen><userinput>./configure --prefix=/usr</userinput></screen>
  28. <para>Compile the package:</para>
  29. <screen><userinput>make</userinput></screen>
  30. <para>To test the results, issue:
  31. <userinput>make check</userinput>. This takes a long time, about 5 SBUs.</para>
  32. <para>Install the package:</para>
  33. <screen><userinput>make install</userinput></screen>
  34. </sect2>
  35. <sect2 id="contents-automake" role="content"><title>Contents of Automake</title>
  36. <segmentedlist>
  37. <segtitle>Installed programs</segtitle>
  38. <seglistitem><seg>acinstall, aclocal, aclocal-&automake-version;,
  39. automake, automake-&automake-version;,
  40. compile, config.guess, config.sub, depcomp, elisp-comp, install-sh, mdate-sh,
  41. missing, mkinstalldirs, py-compile, symlink-tree, and ylwrap</seg></seglistitem>
  42. </segmentedlist>
  43. <variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
  44. <?dbfo list-presentation="list"?>
  45. <varlistentry id="acinstall">
  46. <term><command>acinstall</command></term>
  47. <listitem>
  48. <para>A script that installs aclocal-style M4 files</para>
  49. <indexterm zone="ch-system-automake acinstall"><primary sortas="b-acinstall">acinstall</primary></indexterm>
  50. </listitem>
  51. </varlistentry>
  52. <varlistentry id="aclocal">
  53. <term><command>aclocal</command></term>
  54. <listitem>
  55. <para>Generates <filename>aclocal.m4</filename>
  56. files based on the contents of <filename>configure.in</filename> files</para>
  57. <indexterm zone="ch-system-automake aclocal"><primary sortas="b-aclocal">aclocal</primary></indexterm>
  58. </listitem>
  59. </varlistentry>
  60. <varlistentry id="aclocal-version">
  61. <term><command>aclocal-&automake-version;</command></term>
  62. <listitem>
  63. <para>A hard link to <command>aclocal</command></para>
  64. <indexterm zone="ch-system-automake aclocal-version"><primary
  65. sortas="b-aclocal-&automake-version;">aclocal-&automake-version;</primary></indexterm>
  66. </listitem>
  67. </varlistentry>
  68. <varlistentry id="automake">
  69. <term><command>automake</command></term>
  70. <listitem>
  71. <para>A tool for automatically generating
  72. <filename>Makefile.in</filename> files from
  73. <filename>Makefile.am</filename> files. To create all the
  74. <filename>Makefile.in</filename> files for a package, run this program
  75. in the top-level directory. By scanning the
  76. <filename>configure.in</filename> file, it automatically finds each
  77. appropriate <filename>Makefile.am</filename> file and generate the
  78. corresponding <filename>Makefile.in</filename> file</para>
  79. <indexterm zone="ch-system-automake automake"><primary sortas="b-automake">automake</primary></indexterm>
  80. </listitem>
  81. </varlistentry>
  82. <varlistentry id="automake-version">
  83. <term><command>automake-&automake-version;</command></term>
  84. <listitem>
  85. <para>A hard link to <command>automake</command></para>
  86. <indexterm zone="ch-system-automake automake-version"><primary
  87. sortas="b-automake-&automake-version;">automake-&automake-version;</primary></indexterm>
  88. </listitem>
  89. </varlistentry>
  90. <varlistentry id="compile">
  91. <term><command>compile</command></term>
  92. <listitem>
  93. <para>A wrapper for compilers</para>
  94. <indexterm zone="ch-system-automake compile"><primary sortas="b-compile">compile</primary></indexterm>
  95. </listitem>
  96. </varlistentry>
  97. <varlistentry id="config.guess">
  98. <term><command>config.guess</command></term>
  99. <listitem>
  100. <para>A script that attempts to guess
  101. the canonical triplet for the given build, host, or target architecture</para>
  102. <indexterm zone="ch-system-automake config.guess"><primary sortas="b-config.guess">config.guess</primary></indexterm>
  103. </listitem>
  104. </varlistentry>
  105. <varlistentry id="config.sub">
  106. <term><command>config.sub</command></term>
  107. <listitem>
  108. <para>A configuration validation subroutine script</para>
  109. <indexterm zone="ch-system-automake config.sub"><primary sortas="b-config.sub">config.sub</primary></indexterm>
  110. </listitem>
  111. </varlistentry>
  112. <varlistentry id="depcomp">
  113. <term><command>depcomp</command></term>
  114. <listitem>
  115. <para>A script for compiling a program so that dependency information
  116. is generated in addition to the desired output</para>
  117. <indexterm zone="ch-system-automake depcomp"><primary sortas="b-depcomp">depcomp</primary></indexterm>
  118. </listitem>
  119. </varlistentry>
  120. <varlistentry id="elisp-comp">
  121. <term><command>elisp-comp</command></term>
  122. <listitem>
  123. <para>Byte-compiles Emacs Lisp code</para>
  124. <indexterm zone="ch-system-automake elisp-comp"><primary sortas="b-elisp-comp">elisp-comp</primary></indexterm>
  125. </listitem>
  126. </varlistentry>
  127. <varlistentry id="install-sh">
  128. <term><command>install-sh</command></term>
  129. <listitem>
  130. <para>A script that installs a program, script, or data file</para>
  131. <indexterm zone="ch-system-automake install-sh"><primary sortas="b-install-sh">install-sh</primary></indexterm>
  132. </listitem>
  133. </varlistentry>
  134. <varlistentry id="mdate-sh">
  135. <term><command>mdate-sh</command></term>
  136. <listitem>
  137. <para>A script that prints the modification time of a file or directory</para>
  138. <indexterm zone="ch-system-automake mdate-sh"><primary sortas="b-mdate-sh">mdate-sh</primary></indexterm>
  139. </listitem>
  140. </varlistentry>
  141. <varlistentry id="missing">
  142. <term><command>missing</command></term>
  143. <listitem>
  144. <para>A script acting as a common stub for missing GNU programs during
  145. an installation</para>
  146. <indexterm zone="ch-system-automake missing"><primary sortas="b-missing">missing</primary></indexterm>
  147. </listitem>
  148. </varlistentry>
  149. <varlistentry id="mkinstalldirs">
  150. <term><command>mkinstalldirs</command></term>
  151. <listitem>
  152. <para>A script that creates a directory tree</para>
  153. <indexterm zone="ch-system-automake mkinstalldirs"><primary sortas="b-mkinstalldirs">mkinstalldirs</primary></indexterm>
  154. </listitem>
  155. </varlistentry>
  156. <varlistentry id="py-compile">
  157. <term><command>py-compile</command></term>
  158. <listitem>
  159. <para>Compiles a Python program</para>
  160. <indexterm zone="ch-system-automake py-compile"><primary sortas="b-py-compile">py-compile</primary></indexterm>
  161. </listitem>
  162. </varlistentry>
  163. <varlistentry id="symlink-tree">
  164. <term><command>symlink-tree</command></term>
  165. <listitem>
  166. <para>A script to create a symlink tree of a directory tree</para>
  167. <indexterm zone="ch-system-automake symlink-tree"><primary sortas="b-symlink-tree">symlink-tree</primary></indexterm>
  168. </listitem>
  169. </varlistentry>
  170. <varlistentry id="ylwrap">
  171. <term><command>ylwrap</command></term>
  172. <listitem>
  173. <para>A wrapper for <command>lex</command> and <command>yacc</command></para>
  174. <indexterm zone="ch-system-automake ylwrap"><primary sortas="b-ylwrap">ylwrap</primary></indexterm>
  175. </listitem>
  176. </varlistentry>
  177. </variablelist>
  178. </sect2>
  179. </sect1>