source: chapter06/automake.xml@ cf68536

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since cf68536 was ec66ac7, checked in by Matthew Burgess <matthew@…>, 15 years ago

Upgrade to Automake-1.11. Fixes #2400.

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

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