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

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

Updated CLFS-Sysroot book sources to use DocBook-XML DTD 4.5.

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