source: chapter06/automake.xml@ 88ff136

Last change on this file since 88ff136 was 28b40e2, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Finished the PDF fixes.

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

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