source: chapter06/automake.xml@ 1dc34de7

6.0
Last change on this file since 1dc34de7 was ef13657, checked in by Gerard Beekmans <gerard@…>, 20 years ago

Completed global edits for upcoming 6.0 release

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@4000 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 id="acinstall">
62<term><command>acinstall</command></term>
63<listitem>
64<indexterm zone="ch-system-automake acinstall"><primary sortas="b-acinstall">acinstall</primary></indexterm>
65<para>a script that installs aclocal-style M4 files.</para>
66</listitem>
67</varlistentry>
68
69<varlistentry id="aclocal">
70<term><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 id="automake">
79<term><command>automake</command></term>
80<listitem>
81<indexterm zone="ch-system-automake automake"><primary sortas="b-automake">automake</primary></indexterm>
82<para>a tool for automatically generating
83<filename>Makefile.in</filename> files from
84<filename>Makefile.am</filename> files. To create all the
85<filename>Makefile.in</filename> files for a package, run this program
86in the top-level directory. By scanning the
87<filename>configure.in</filename> file, it automatically finds each
88appropriate <filename>Makefile.am</filename> file and generate the
89corresponding <filename>Makefile.in</filename> file.</para>
90</listitem>
91</varlistentry>
92
93<varlistentry id="compile">
94<term><command>compile</command></term>
95<listitem>
96<indexterm zone="ch-system-automake compile"><primary sortas="b-compile">compile</primary></indexterm>
97<para>a wrapper for compilers.</para>
98</listitem>
99</varlistentry>
100
101<varlistentry id="config.guess">
102<term><command>config.guess</command> </term>
103<listitem>
104<indexterm zone="ch-system-automake config.guess"><primary sortas="b-config.guess">config.guess</primary></indexterm>
105<para>a script that attempts to guess
106the canonical triplet for the given build, host, or target architecture.</para>
107</listitem>
108</varlistentry>
109
110<varlistentry id="config.su">
111<term><command>config.sub</command></term>
112<listitem>
113<indexterm zone="ch-system-automake config.su"><primary sortas="b-config.su">config.su</primary></indexterm>
114<para>a configuration validation subroutine script.</para>
115</listitem>
116</varlistentry>
117
118<varlistentry id="depcomp">
119<term><command>depcomp</command></term>
120<listitem>
121<indexterm zone="ch-system-automake depcomp"><primary sortas="b-depcomp">depcomp</primary></indexterm>
122<para>a script for compiling a program so that dependency information
123is generated in addition to the desired output.</para>
124</listitem>
125</varlistentry>
126
127<varlistentry id="elisp-comp">
128<term><command>elisp-comp</command></term>
129<listitem>
130<indexterm zone="ch-system-automake elisp-comp"><primary sortas="b-elisp-comp">elisp-comp</primary></indexterm>
131<para>byte-compiles Emacs Lisp code.</para>
132</listitem>
133</varlistentry>
134
135<varlistentry id="install-sh">
136<term><command>install-sh</command></term>
137<listitem>
138<indexterm zone="ch-system-automake install-sh"><primary sortas="b-install-sh">install-sh</primary></indexterm>
139<para>a script that installs a program, a script, or a data file.</para>
140</listitem>
141</varlistentry>
142
143<varlistentry id="mdate-sh">
144<term><command>mdate-sh</command></term>
145<listitem>
146<indexterm zone="ch-system-automake mdate-sh"><primary sortas="b-mdate-sh">mdate-sh</primary></indexterm>
147<para>a script that prints the modification time of a file or directory.</para>
148</listitem>
149</varlistentry>
150
151<varlistentry id="missing">
152<term><command>missing</command></term>
153<listitem>
154<indexterm zone="ch-system-automake missing"><primary sortas="b-missing">missing</primary></indexterm>
155<para>a script acting as a common stub for missing GNU programs during
156an installation.</para>
157</listitem>
158</varlistentry>
159
160<varlistentry id="mkinstalldirs">
161<term><command>mkinstalldirs</command></term>
162<listitem>
163<indexterm zone="ch-system-automake mkinstalldirs"><primary sortas="b-mkinstalldirs">mkinstalldirs</primary></indexterm>
164<para>a script that creates a directory tree.</para>
165</listitem>
166</varlistentry>
167
168<varlistentry id="py-compile">
169<term><command>py-compile</command></term>
170<listitem>
171<indexterm zone="ch-system-automake py-compile"><primary sortas="b-py-compile">py-compile</primary></indexterm>
172<para>compiles a Python program.</para>
173</listitem>
174</varlistentry>
175
176<varlistentry id="symlink-tree">
177<term><command>symlink-tree</command></term>
178<listitem>
179<indexterm zone="ch-system-automake symlink-tree"><primary sortas="b-symlink-tree">symlink-tree</primary></indexterm>
180<para>a script to create a symlink tree of a directory tree.</para>
181</listitem>
182</varlistentry>
183
184<varlistentry id="ylwrap">
185<term><command>ylwrap</command></term>
186<listitem>
187<indexterm zone="ch-system-automake ylwrap"><primary sortas="b-ylwrap">ylwrap</primary></indexterm>
188<para>a wrapper for <command>lex</command> and <command>yacc</command>.</para>
189</listitem>
190</varlistentry>
191</variablelist>
192
193</sect2>
194
195</sect1>
196
Note: See TracBrowser for help on using the repository browser.