source: chapter06/automake.xml@ ac89fab

Last change on this file since ac89fab was 407d336, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

Updated multi-arch branch to current testing.

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