source: chapter06/automake.xml@ c11bcb7

Last change on this file since c11bcb7 was c11bcb7, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Merged r8366 from trunk.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/jh/BOOK@8367 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

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