source: chapter06/automake.xml@ f5250e60

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 7.4 7.5 7.6 7.7 7.8 7.9 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 f5250e60 was b5b97081, checked in by Bruce Dubbs <bdubbs@…>, 11 years ago

Updates to file and library contenets.

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

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