source: chapter06/automake.xml@ 083c9f8

Last change on this file since 083c9f8 was a0e1913, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Removed the package name from the dependencies titles.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multi-arch/BOOK@4691 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 7.3 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[c2133bc]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
[673b0d8]3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[752f4e5]6<sect1 id="ch-system-automake" role="wrap">
[673b0d8]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>
[6370fa6]11
[a001133]12<sect2 role="package"><title/>
[5888299]13<para>The Automake package contains programs for generating Makefiles for use
14with Autoconf.</para>
15
[a001133]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>
[a0e1913]23<segtitle>&dependencies;</segtitle>
[a001133]24<seglistitem><seg>Autoconf, Bash, Coreutils,
[69993f4]25Diffutils, Grep, M4, Make, Perl, and Sed</seg></seglistitem>
[a001133]26</segmentedlist>
27</sect2>
[73aedd1d]28
[a001133]29<sect2 role="installation">
[73aedd1d]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
[673b0d8]40<para>To test the results, issue:
[c76accc]41<userinput>make check</userinput>. This takes a long time, about 5 SBUs.</para>
[73aedd1d]42
43<para>Install the package:</para>
44
45<screen><userinput>make install</userinput></screen>
46
47</sect2>
[6370fa6]48
[5888299]49
[c6cb3aa]50<sect2 id="contents-automake" role="content"><title>Contents of Automake</title>
[673b0d8]51
[c6cb3aa]52<segmentedlist>
53<segtitle>Installed programs</segtitle>
[69993f4]54<seglistitem><seg>acinstall, aclocal, aclocal-&automake-version;,
55automake, automake-&automake-version;,
[c6cb3aa]56compile, config.guess, config.sub, depcomp, elisp-comp, install-sh, mdate-sh,
[69993f4]57missing, mkinstalldirs, py-compile, symlink-tree, and ylwrap</seg></seglistitem>
[c6cb3aa]58</segmentedlist>
[673b0d8]59
[2256873]60<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
[3ed279f]61<?dbfo list-presentation="list"?>
[c5f9180]62<?dbhtml list-presentation="table"?>
[673b0d8]63
[b8a819f]64<varlistentry id="acinstall">
65<term><command>acinstall</command></term>
[c6cb3aa]66<listitem>
[2256873]67<para>A script that installs aclocal-style M4 files</para>
[3ed279f]68<indexterm zone="ch-system-automake acinstall"><primary sortas="b-acinstall">acinstall</primary></indexterm>
[c6cb3aa]69</listitem>
70</varlistentry>
[673b0d8]71
[b8a819f]72<varlistentry id="aclocal">
73<term><command>aclocal</command></term>
[c6cb3aa]74<listitem>
[2256873]75<para>Generates <filename>aclocal.m4</filename>
76files based on the contents of <filename>configure.in</filename> files</para>
[3ed279f]77<indexterm zone="ch-system-automake aclocal"><primary sortas="b-aclocal">aclocal</primary></indexterm>
[c6cb3aa]78</listitem>
79</varlistentry>
[673b0d8]80
[69993f4]81<varlistentry id="aclocal-version">
82<term><command>aclocal-&automake-version;</command></term>
83<listitem>
[2256873]84<para>A hard link to <command>aclocal</command></para>
[69993f4]85<indexterm zone="ch-system-automake aclocal-version"><primary
86sortas="b-aclocal-&automake-version;">aclocal-&automake-version;</primary></indexterm>
87</listitem>
88</varlistentry>
89
[b8a819f]90<varlistentry id="automake">
91<term><command>automake</command></term>
[c6cb3aa]92<listitem>
[2256873]93<para>A tool for automatically generating
[ef13657]94<filename>Makefile.in</filename> files from
95<filename>Makefile.am</filename> files. To create all the
96<filename>Makefile.in</filename> files for a package, run this program
97in the top-level directory. By scanning the
98<filename>configure.in</filename> file, it automatically finds each
99appropriate <filename>Makefile.am</filename> file and generate the
[2256873]100corresponding <filename>Makefile.in</filename> file</para>
[3ed279f]101<indexterm zone="ch-system-automake automake"><primary sortas="b-automake">automake</primary></indexterm>
[c6cb3aa]102</listitem>
103</varlistentry>
[673b0d8]104
[69993f4]105<varlistentry id="automake-version">
106<term><command>automake-&automake-version;</command></term>
107<listitem>
[2256873]108<para>A hard link to <command>automake</command></para>
[69993f4]109<indexterm zone="ch-system-automake automake-version"><primary
110sortas="b-automake-&automake-version;">automake-&automake-version;</primary></indexterm>
111</listitem>
112</varlistentry>
113
[b8a819f]114<varlistentry id="compile">
115<term><command>compile</command></term>
[c6cb3aa]116<listitem>
[2256873]117<para>A wrapper for compilers</para>
[3ed279f]118<indexterm zone="ch-system-automake compile"><primary sortas="b-compile">compile</primary></indexterm>
[c6cb3aa]119</listitem>
120</varlistentry>
[673b0d8]121
[b8a819f]122<varlistentry id="config.guess">
[2256873]123<term><command>config.guess</command></term>
[c6cb3aa]124<listitem>
[2256873]125<para>A script that attempts to guess
126the canonical triplet for the given build, host, or target architecture</para>
[3ed279f]127<indexterm zone="ch-system-automake config.guess"><primary sortas="b-config.guess">config.guess</primary></indexterm>
[c6cb3aa]128</listitem>
129</varlistentry>
[673b0d8]130
[407d336]131<varlistentry id="config.sub">
[b8a819f]132<term><command>config.sub</command></term>
[c6cb3aa]133<listitem>
[2256873]134<para>A configuration validation subroutine script</para>
[407d336]135<indexterm zone="ch-system-automake config.sub"><primary sortas="b-config.sub">config.sub</primary></indexterm>
[c6cb3aa]136</listitem>
137</varlistentry>
[673b0d8]138
[b8a819f]139<varlistentry id="depcomp">
140<term><command>depcomp</command></term>
[c6cb3aa]141<listitem>
[2256873]142<para>A script for compiling a program so that dependency information
143is generated in addition to the desired output</para>
[3ed279f]144<indexterm zone="ch-system-automake depcomp"><primary sortas="b-depcomp">depcomp</primary></indexterm>
[c6cb3aa]145</listitem>
146</varlistentry>
147
[b8a819f]148<varlistentry id="elisp-comp">
149<term><command>elisp-comp</command></term>
[c6cb3aa]150<listitem>
[2256873]151<para>Byte-compiles Emacs Lisp code</para>
[3ed279f]152<indexterm zone="ch-system-automake elisp-comp"><primary sortas="b-elisp-comp">elisp-comp</primary></indexterm>
[c6cb3aa]153</listitem>
154</varlistentry>
[673b0d8]155
[b8a819f]156<varlistentry id="install-sh">
157<term><command>install-sh</command></term>
[c6cb3aa]158<listitem>
[2256873]159<para>A script that installs a program, script, or data file</para>
[3ed279f]160<indexterm zone="ch-system-automake install-sh"><primary sortas="b-install-sh">install-sh</primary></indexterm>
[c6cb3aa]161</listitem>
162</varlistentry>
[673b0d8]163
[b8a819f]164<varlistentry id="mdate-sh">
165<term><command>mdate-sh</command></term>
[c6cb3aa]166<listitem>
[2256873]167<para>A script that prints the modification time of a file or directory</para>
[3ed279f]168<indexterm zone="ch-system-automake mdate-sh"><primary sortas="b-mdate-sh">mdate-sh</primary></indexterm>
[c6cb3aa]169</listitem>
170</varlistentry>
[673b0d8]171
[b8a819f]172<varlistentry id="missing">
173<term><command>missing</command></term>
[c6cb3aa]174<listitem>
[2256873]175<para>A script acting as a common stub for missing GNU programs during
176an installation</para>
[3ed279f]177<indexterm zone="ch-system-automake missing"><primary sortas="b-missing">missing</primary></indexterm>
[c6cb3aa]178</listitem>
179</varlistentry>
[673b0d8]180
[b8a819f]181<varlistentry id="mkinstalldirs">
182<term><command>mkinstalldirs</command></term>
[c6cb3aa]183<listitem>
[2256873]184<para>A script that creates a directory tree</para>
[3ed279f]185<indexterm zone="ch-system-automake mkinstalldirs"><primary sortas="b-mkinstalldirs">mkinstalldirs</primary></indexterm>
[c6cb3aa]186</listitem>
187</varlistentry>
[673b0d8]188
[b8a819f]189<varlistentry id="py-compile">
190<term><command>py-compile</command></term>
[c6cb3aa]191<listitem>
[2256873]192<para>Compiles a Python program</para>
[3ed279f]193<indexterm zone="ch-system-automake py-compile"><primary sortas="b-py-compile">py-compile</primary></indexterm>
[c6cb3aa]194</listitem>
195</varlistentry>
[673b0d8]196
[b8a819f]197<varlistentry id="symlink-tree">
198<term><command>symlink-tree</command></term>
[c6cb3aa]199<listitem>
[2256873]200<para>A script to create a symlink tree of a directory tree</para>
[3ed279f]201<indexterm zone="ch-system-automake symlink-tree"><primary sortas="b-symlink-tree">symlink-tree</primary></indexterm>
[c6cb3aa]202</listitem>
203</varlistentry>
[673b0d8]204
[b8a819f]205<varlistentry id="ylwrap">
206<term><command>ylwrap</command></term>
[c6cb3aa]207<listitem>
[2256873]208<para>A wrapper for <command>lex</command> and <command>yacc</command></para>
[3ed279f]209<indexterm zone="ch-system-automake ylwrap"><primary sortas="b-ylwrap">ylwrap</primary></indexterm>
[c6cb3aa]210</listitem>
211</varlistentry>
212</variablelist>
[673b0d8]213
214</sect2>
215
216</sect1>
[ef13657]217
Note: See TracBrowser for help on using the repository browser.