source: chapter06/automake.xml@ c6cb3aa

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.0 6.1 6.1.1 6.3 6.4 6.5 6.6 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 c6cb3aa was c6cb3aa, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

HEAD: Retagged the Contents of ... sections.

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

  • Property mode set to 100644
File size: 6.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-automake" xreflabel="Automake" role="wrap">
7<title>Automake-&automake-version;</title>
8<?dbhtml filename="automake.html"?>
9
10<indexterm zone="ch-system-automake"><primary sortas="a-Automake">Automake</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The Automake package contains programs for generating Makefiles for use
14with Autoconf.</para>
15
16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>0.2 SBU</seg><seg>6.8 MB</seg></seglistitem>
20</segmentedlist>
21
22<segmentedlist>
23<segtitle>Automake installation depends on</segtitle>
24<seglistitem><seg>Autoconf, Bash, Coreutils,
25Diffutils, Grep, M4, Make, Perl, Sed</seg></seglistitem>
26</segmentedlist>
27</sect2>
28
29<sect2 role="installation">
30<title>Installation of Automake</title>
31
32<para>Prepare Automake for compilation:</para>
33
34<screen><userinput>./configure --prefix=/usr</userinput></screen>
35
36<para>Compile the package:</para>
37
38<screen><userinput>make</userinput></screen>
39
40<para>To test the results, issue:
41<userinput>make check</userinput>. This takes a long time, about 5 SBUs.</para>
42
43<para>Install the package:</para>
44
45<screen><userinput>make install</userinput></screen>
46
47</sect2>
48
49
50<sect2 id="contents-automake" role="content"><title>Contents of Automake</title>
51
52<segmentedlist>
53<segtitle>Installed programs</segtitle>
54<seglistitem><seg>acinstall, aclocal, aclocal-1.8, automake, automake-1.8,
55compile, config.guess, config.sub, depcomp, elisp-comp, install-sh, mdate-sh,
56missing, mkinstalldirs, py-compile, symlink-tree, ylwrap</seg></seglistitem>
57</segmentedlist>
58
59<variablelist><title>Short descriptions</title>
60
61<varlistentry>
62<term id="acinstall"><command>acinstall</command></term>
63<listitem>
64<indexterm zone="ch-system-automake acinstall"><primary sortas="b-acinstall">acinstall</primary></indexterm>
65<para>is a script that installs aclocal-style M4 files.</para>
66</listitem>
67</varlistentry>
68
69<varlistentry>
70<term id="aclocal"><command>aclocal</command></term>
71<listitem>
72<indexterm zone="ch-system-automake aclocal"><primary sortas="b-aclocal">aclocal</primary></indexterm>
73<para>generates <filename>aclocal.m4</filename>
74files based on the contents of <filename>configure.in</filename> files.</para>
75</listitem>
76</varlistentry>
77
78<varlistentry>
79<term id="automake"><command>automake</command></term>
80<listitem>
81<indexterm zone="ch-system-automake automake"><primary sortas="b-automake">automake</primary></indexterm>
82<para>is a tool for automatically generating
83<filename>Makefile.in</filename>'s from files called
84<filename>Makefile.am</filename>. To create all the
85<filename>Makefile.in</filename> files for a package, run this program in the
86top-level directory. By scanning the <filename>configure.in</filename>s it
87automatically finds each appropriate <filename>Makefile.am</filename> and
88generate the corresponding <filename>Makefile.in</filename>.</para>
89</listitem>
90</varlistentry>
91
92<varlistentry>
93<term id="compile"><command>compile</command></term>
94<listitem>
95<indexterm zone="ch-system-automake compile"><primary sortas="b-compile">compile</primary></indexterm>
96<para>is a wrapper for compilers.</para>
97</listitem>
98</varlistentry>
99
100<varlistentry>
101<term id="config.guess"><command>config.guess</command> </term>
102<listitem>
103<indexterm zone="ch-system-automake config.guess"><primary sortas="b-config.guess">config.guess</primary></indexterm>
104<para>is a script that attempts to guess
105the canonical triplet for the given build, host, or target architecture.</para>
106</listitem>
107</varlistentry>
108
109<varlistentry>
110<term id="config.su"><command>config.sub</command></term>
111<listitem>
112<indexterm zone="ch-system-automake config.su"><primary sortas="b-config.su">config.su</primary></indexterm>
113<para>is a configuration validation subroutine script.</para>
114</listitem>
115</varlistentry>
116
117<varlistentry>
118<term id="depcomp"><command>depcomp</command></term>
119<listitem>
120<indexterm zone="ch-system-automake depcomp"><primary sortas="b-depcomp">depcomp</primary></indexterm>
121<para>is a script for compiling a program so that not only the desired output is
122generated, but also dependency information.</para>
123</listitem>
124</varlistentry>
125
126<varlistentry>
127<term id="elisp-comp"><command>elisp-comp</command></term>
128<listitem>
129<indexterm zone="ch-system-automake elisp-comp"><primary sortas="b-elisp-comp">elisp-comp</primary></indexterm>
130<para>byte-compiles Emacs Lisp code.</para>
131</listitem>
132</varlistentry>
133
134<varlistentry>
135<term id="install-sh"><command>install-sh</command></term>
136<listitem>
137<indexterm zone="ch-system-automake install-sh"><primary sortas="b-install-sh">install-sh</primary></indexterm>
138<para>is a script that installs a program, a script, or a datafile.</para>
139</listitem>
140</varlistentry>
141
142<varlistentry>
143<term id="mdate-sh"><command>mdate-sh</command></term>
144<listitem>
145<indexterm zone="ch-system-automake mdate-sh"><primary sortas="b-mdate-sh">mdate-sh</primary></indexterm>
146<para>is a script that prints the modification time of a file or directory.</para>
147</listitem>
148</varlistentry>
149
150<varlistentry>
151<term id="missing"><command>missing</command></term>
152<listitem>
153<indexterm zone="ch-system-automake missing"><primary sortas="b-missing">missing</primary></indexterm>
154<para>is a script acting as a common stub for
155missing GNU programs during an installation.</para>
156</listitem>
157</varlistentry>
158
159<varlistentry>
160<term id="mkinstalldirs"><command>mkinstalldirs</command></term>
161<listitem>
162<indexterm zone="ch-system-automake mkinstalldirs"><primary sortas="b-mkinstalldirs">mkinstalldirs</primary></indexterm>
163<para>is a script that creates a directory tree.</para>
164</listitem>
165</varlistentry>
166
167<varlistentry>
168<term id="py-compile"><command>py-compile</command></term>
169<listitem>
170<indexterm zone="ch-system-automake py-compile"><primary sortas="b-py-compile">py-compile</primary></indexterm>
171<para>compiles a Python program.</para>
172</listitem>
173</varlistentry>
174
175<varlistentry>
176<term id="symlink-tree"><command>symlink-tree</command></term>
177<listitem>
178<indexterm zone="ch-system-automake symlink-tree"><primary sortas="b-symlink-tree">symlink-tree</primary></indexterm>
179<para>is a script to create a symlink tree of a directory tree.</para>
180</listitem>
181</varlistentry>
182
183<varlistentry>
184<term id="ylwrap"><command>ylwrap</command></term>
185<listitem>
186<indexterm zone="ch-system-automake ylwrap"><primary sortas="b-ylwrap">ylwrap</primary></indexterm>
187<para>is a wrapper for lex and yacc.</para>
188</listitem>
189</varlistentry>
190</variablelist>
191
192</sect2>
193
194</sect1>
Note: See TracBrowser for help on using the repository browser.