source: clfs-sysroot/BOOK/final-system/common/automake.xml @ 59fb197

Last change on this file since 59fb197 was 59fb197, checked in by Jim Gifford <clfs@…>, 18 years ago

r3817@server (orig r1719): jciccone | 2006-06-05 13:56:36 -0700
Brought the clfs-2.0 branch up to trunk.

  • Property mode set to 100644
File size: 8.6 KB
RevLine 
[02095ae]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3  "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4  <!ENTITY % general-entities SYSTEM "../../general.ent">
5  %general-entities;
6]>
7
8<sect1 id="ch-system-automake" role="wrap">
9  <?dbhtml filename="automake.html"?>
10
11  <title>Automake-&automake-version;</title>
12
13  <indexterm zone="ch-system-automake">
14    <primary sortas="a-Automake">Automake</primary>
15  </indexterm>
16
17  <sect2 role="package">
18    <title/>
19
20    <para>The Automake package contains programs for generating Makefiles
21    for use with Autoconf.</para>
22
23  </sect2>
24
25  <sect2 role="installation">
26    <title>Installation of Automake</title>
27
28    <para os="a">Prepare Automake for compilation:</para>
29
30<screen os="b"><userinput>./configure --prefix=/usr --host=${LFS_TARGET}</userinput></screen>
31
32    <para os="c">Compile the package:</para>
33
34<screen os="d"><userinput>make</userinput></screen>
35
36    <para os="e">Install the package:</para>
37
38<screen os="f"><userinput>make DESTDIR=${LFS} install</userinput></screen>
39
40  </sect2>
41
42  <sect2 id="contents-automake" role="content">
43    <title>Contents of Automake</title>
44
45    <segmentedlist>
46      <segtitle>Installed programs</segtitle>
47
48      <seglistitem>
[59fb197]49        <seg>acinstall, aclocal, aclocal-1.9, automake,
50        automake-1.9, compile, config.guess, config.sub,
[02095ae]51        depcomp, elisp-comp, install-sh, mdate-sh, missing, mkinstalldirs,
52        py-compile, symlink-tree, and ylwrap</seg>
53      </seglistitem>
54    </segmentedlist>
55
56    <variablelist>
57      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
58      <?dbfo list-presentation="list"?>
59      <?dbhtml list-presentation="table"?>
60
61      <varlistentry id="acinstall">
62        <term><command>acinstall</command></term>
63        <listitem>
64          <para>A script that installs aclocal-style M4 files</para>
65          <indexterm zone="ch-system-automake acinstall">
66            <primary sortas="b-acinstall">acinstall</primary>
67          </indexterm>
68        </listitem>
69      </varlistentry>
70
71      <varlistentry id="aclocal">
72        <term><command>aclocal</command></term>
73        <listitem>
74          <para>Generates <filename>aclocal.m4</filename> files based on the
75          contents of <filename>configure.in</filename> files</para>
76          <indexterm zone="ch-system-automake aclocal">
77            <primary sortas="b-aclocal">aclocal</primary>
78          </indexterm>
79        </listitem>
80      </varlistentry>
81
82      <varlistentry id="aclocal-version">
[59fb197]83        <term><command>aclocal-1.9</command></term>
[02095ae]84        <listitem>
85          <para>A hard link to <command>aclocal</command></para>
86          <indexterm zone="ch-system-automake aclocal-version">
87            <primary
88            sortas="b-aclocal-&automake-version;">aclocal-&automake-version;</primary>
89          </indexterm>
90        </listitem>
91      </varlistentry>
92
93      <varlistentry id="automake">
94        <term><command>automake</command></term>
95        <listitem>
96          <para>A tool for automatically generating
97          <filename>Makefile.in</filename> files from
98          <filename>Makefile.am</filename> files. To create all the
99          <filename>Makefile.in</filename> files for a package, run this
100          program in the top-level directory. By scanning the
101          <filename>configure.in</filename> file, it automatically finds
102          each appropriate <filename>Makefile.am</filename> file and generates
103          the corresponding <filename>Makefile.in</filename> file</para>
104          <indexterm zone="ch-system-automake automake">
105            <primary sortas="b-automake">automake</primary>
106          </indexterm>
107        </listitem>
108      </varlistentry>
109
110      <varlistentry id="automake-version">
[59fb197]111        <term><command>automake-1.9</command></term>
[02095ae]112        <listitem>
113          <para>A hard link to <command>automake</command></para>
114          <indexterm zone="ch-system-automake automake-version">
115            <primary
116            sortas="b-automake-&automake-version;">automake-&automake-version;</primary>
117          </indexterm>
118        </listitem>
119      </varlistentry>
120
121      <varlistentry id="compile">
122        <term><command>compile</command></term>
123        <listitem>
124          <para>A wrapper for compilers</para>
125          <indexterm zone="ch-system-automake compile">
126            <primary sortas="b-compile">compile</primary>
127          </indexterm>
128        </listitem>
129      </varlistentry>
130
131      <varlistentry id="config.guess">
132        <term><command>config.guess</command></term>
133        <listitem>
134          <para>A script that attempts to guess the canonical triplet for
135          the given build, host, or target architecture</para>
136          <indexterm zone="ch-system-automake config.guess">
137            <primary sortas="b-config.guess">config.guess</primary>
138          </indexterm>
139        </listitem>
140      </varlistentry>
141
142      <varlistentry id="config.sub">
143        <term><command>config.sub</command></term>
144        <listitem>
145          <para>A configuration validation subroutine script</para>
146          <indexterm zone="ch-system-automake config.sub">
147            <primary sortas="b-config.sub">config.sub</primary>
148          </indexterm>
149        </listitem>
150      </varlistentry>
151
152      <varlistentry id="depcomp">
153        <term><command>depcomp</command></term>
154        <listitem>
155          <para>A script for compiling a program so that dependency information
156          is generated in addition to the desired output</para>
157          <indexterm zone="ch-system-automake depcomp">
158            <primary sortas="b-depcomp">depcomp</primary>
159          </indexterm>
160        </listitem>
161      </varlistentry>
162
163      <varlistentry id="elisp-comp">
164        <term><command>elisp-comp</command></term>
165        <listitem>
166          <para>Byte-compiles Emacs Lisp code</para>
167          <indexterm zone="ch-system-automake elisp-comp">
168            <primary sortas="b-elisp-comp">elisp-comp</primary>
169          </indexterm>
170        </listitem>
171      </varlistentry>
172
173      <varlistentry id="install-sh">
174        <term><command>install-sh</command></term>
175        <listitem>
176          <para>A script that installs a program, script, or data file</para>
177          <indexterm zone="ch-system-automake install-sh">
178            <primary sortas="b-install-sh">install-sh</primary>
179          </indexterm>
180        </listitem>
181      </varlistentry>
182
183      <varlistentry id="mdate-sh">
184        <term><command>mdate-sh</command></term>
185        <listitem>
186          <para>A script that prints the modification time of a file or
187          directory</para>
188          <indexterm zone="ch-system-automake mdate-sh">
189            <primary sortas="b-mdate-sh">mdate-sh</primary>
190          </indexterm>
191        </listitem>
192      </varlistentry>
193
194      <varlistentry id="missing">
195        <term><command>missing</command></term>
196        <listitem>
197          <para>A script acting as a common stub for missing GNU programs during
198          an installation</para>
199          <indexterm zone="ch-system-automake missing">
200            <primary sortas="b-missing">missing</primary>
201          </indexterm>
202        </listitem>
203      </varlistentry>
204
205      <varlistentry id="mkinstalldirs">
206        <term><command>mkinstalldirs</command></term>
207        <listitem>
208          <para>A script that creates a directory tree</para>
209          <indexterm zone="ch-system-automake mkinstalldirs">
210            <primary sortas="b-mkinstalldirs">mkinstalldirs</primary>
211          </indexterm>
212        </listitem>
213      </varlistentry>
214
215      <varlistentry id="py-compile">
216        <term><command>py-compile</command></term>
217        <listitem>
218          <para>Compiles a Python program</para>
219          <indexterm zone="ch-system-automake py-compile">
220            <primary sortas="b-py-compile">py-compile</primary>
221          </indexterm>
222        </listitem>
223      </varlistentry>
224
225      <varlistentry id="symlink-tree">
226        <term><command>symlink-tree</command></term>
227        <listitem>
228          <para>A script to create a symlink tree of a directory tree</para>
229          <indexterm zone="ch-system-automake symlink-tree">
230            <primary sortas="b-symlink-tree">symlink-tree</primary>
231          </indexterm>
232        </listitem>
233      </varlistentry>
234
235      <varlistentry id="ylwrap">
236        <term><command>ylwrap</command></term>
237        <listitem>
238          <para>A wrapper for <command>lex</command> and
239          <command>yacc</command></para>
240          <indexterm zone="ch-system-automake ylwrap">
241            <primary sortas="b-ylwrap">ylwrap</primary>
242          </indexterm>
243        </listitem>
244      </varlistentry>
245
246    </variablelist>
247
248  </sect2>
249
250</sect1>
Note: See TracBrowser for help on using the repository browser.