source: chapter06/automake.xml@ 7bb9fda

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.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 7bb9fda was 7bb9fda, checked in by Bruce Dubbs <bdubbs@…>, 9 years ago

Minor text and punctuation updates

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

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