source: chapter06/automake.xml@ f168b8f

7.8-systemd 7.9-systemd
Last change on this file since f168b8f was f168b8f, checked in by Krejzi <krejzi@…>, 9 years ago

Merged trunk. Updated to dbus-1.8.20, systemd-222.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd@10928 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>First fix a warning that is caused by perl-5.22 and later:</para>
45
46<screen><userinput remap="pre">sed -i 's:/\\\${:/\\\$\\{:' bin/automake.in</userinput></screen>
47
48 <para>Prepare Automake for compilation:</para>
49
50<screen><userinput remap="configure">./configure --prefix=/usr --docdir=/usr/share/doc/automake-&automake-version;</userinput></screen>
51
52 <para>Compile the package:</para>
53
54<screen><userinput remap="make">make</userinput></screen>
55
56 <para>There are a couple of tests that incorrectly link to the
57 wrong version of the flex library, so we temporarily work around
58 the problem. Also, using the -j4 make option speeds up the tests, even on
59 systems with only one processor, due to internal delays in individual
60 tests. To test the results, issue:</para>
61
62<screen><userinput remap="test">sed -i "s:./configure:LEXLIB=/usr/lib/libfl.a &amp;:" t/lex-{clean,depend}-cxx.sh
63make -j4 check</userinput></screen>
64
65 <para>Install the package:</para>
66
67<screen><userinput remap="install">make install</userinput></screen>
68
69 </sect2>
70
71
72 <sect2 id="contents-automake" role="content">
73 <title>Contents of Automake</title>
74
75 <segmentedlist>
76 <segtitle>Installed programs</segtitle>
77 <segtitle>Installed directories</segtitle>
78
79 <seglistitem>
80 <seg>aclocal, aclocal-&am-minor-version;, automake,
81 automake-&am-minor-version;, compile, config.guess, config.sub,
82 depcomp, install-sh, mdate-sh, missing, mkinstalldirs,
83 py-compile, and ylwrap</seg>
84 <seg>/usr/share/aclocal-&am-minor-version;, /usr/share/automake-&am-minor-version;, and
85 /usr/share/doc/automake-&automake-version;</seg>
86 </seglistitem>
87 </segmentedlist>
88
89 <variablelist>
90 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
91 <?dbfo list-presentation="list"?>
92 <?dbhtml list-presentation="table"?>
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-&am-minor-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-&am-minor-version;">aclocal-&am-minor-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-&am-minor-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-&am-minor-version;">automake-&am-minor-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="install-sh">
185 <term><command>install-sh</command></term>
186 <listitem>
187 <para>A script that installs a program, script, or data file</para>
188 <indexterm zone="ch-system-automake install-sh">
189 <primary sortas="b-install-sh">install-sh</primary>
190 </indexterm>
191 </listitem>
192 </varlistentry>
193
194 <varlistentry id="mdate-sh">
195 <term><command>mdate-sh</command></term>
196 <listitem>
197 <para>A script that prints the modification time of a file or
198 directory</para>
199 <indexterm zone="ch-system-automake mdate-sh">
200 <primary sortas="b-mdate-sh">mdate-sh</primary>
201 </indexterm>
202 </listitem>
203 </varlistentry>
204
205 <varlistentry id="missing">
206 <term><command>missing</command></term>
207 <listitem>
208 <para>A script acting as a common stub for missing GNU programs during
209 an installation</para>
210 <indexterm zone="ch-system-automake missing">
211 <primary sortas="b-missing">missing</primary>
212 </indexterm>
213 </listitem>
214 </varlistentry>
215
216 <varlistentry id="mkinstalldirs">
217 <term><command>mkinstalldirs</command></term>
218 <listitem>
219 <para>A script that creates a directory tree</para>
220 <indexterm zone="ch-system-automake mkinstalldirs">
221 <primary sortas="b-mkinstalldirs">mkinstalldirs</primary>
222 </indexterm>
223 </listitem>
224 </varlistentry>
225
226 <varlistentry id="py-compile">
227 <term><command>py-compile</command></term>
228 <listitem>
229 <para>Compiles a Python program</para>
230 <indexterm zone="ch-system-automake py-compile">
231 <primary sortas="b-py-compile">py-compile</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.