source: chapter08/automake.xml@ 0bc5523

10.1-rc1
Last change on this file since 0bc5523 was 0bc5523, checked in by Bruce Dubbs <bdubbs@…>, 3 years ago

LFS-10.1-rc1

git-svn-id: http://svn.linuxfromscratch.org/LFS/tags/10.1-rc1@12141 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 4.8 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[50e693d]7
[81fd230]8<sect1 id="ch-system-automake" role="wrap">
[50e693d]9 <?dbhtml filename="automake.html"?>
10
[e747759]11 <sect1info condition="script">
12 <productname>automake</productname>
13 <productnumber>&automake-version;</productnumber>
14 <address>&automake-url;</address>
15 </sect1info>
16
[50e693d]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/>
[673b0d8]25
[50e693d]26 <para>The Automake package contains programs for generating Makefiles for use
27 with Autoconf.</para>
[6370fa6]28
[50e693d]29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
[5888299]32
[50e693d]33 <seglistitem>
[fb386e0]34 <seg>&automake-fin-sbu;</seg>
35 <seg>&automake-fin-du;</seg>
[50e693d]36 </seglistitem>
37 </segmentedlist>
[a001133]38
[50e693d]39 </sect2>
40
41 <sect2 role="installation">
42 <title>Installation of Automake</title>
43
[ae7f075]44 <para>Fix a failing test:</para>
45
[6a156bab]46<screen><userinput remap="pre">sed -i "s/''/etags/" t/tags-lisp-space.sh</userinput></screen>
[ae7f075]47
[50e693d]48 <para>Prepare Automake for compilation:</para>
[73aedd1d]49
[4106b83]50<screen><userinput remap="configure">./configure --prefix=/usr --docdir=/usr/share/doc/automake-&automake-version;</userinput></screen>
[73aedd1d]51
[50e693d]52 <para>Compile the package:</para>
[73aedd1d]53
[0445a3d]54<screen><userinput remap="make">make</userinput></screen>
[73aedd1d]55
[d4bf7ab]56 <para> Using the -j4 make option speeds up the tests, even on systems with
57 only one processor, due to internal delays in individual tests. To test
58 the results, issue:</para>
[0445a3d]59
[d4bf7ab]60<screen><userinput remap="test">make -j4 check</userinput></screen>
61
[0bc5523]62 <para>The tests t/subobj.sh, t/deprecated-acinit.sh, and t/init.sh are known to
[1e639b2]63 fail in the LFS environment.</para>
[c8fd7fe]64
[50e693d]65 <para>Install the package:</para>
[73aedd1d]66
[0445a3d]67<screen><userinput remap="install">make install</userinput></screen>
[73aedd1d]68
[50e693d]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>
[fe05b08]77 <segtitle>Installed directories</segtitle>
[50e693d]78
79 <seglistitem>
[040ecb6]80 <seg>aclocal, aclocal-&am-minor-version; (hard linked with aclocal), automake, and
81 automake-&am-minor-version; (hard linked with automake) </seg>
[7bb9fda]82 <seg>/usr/share/aclocal-&am-minor-version;, /usr/share/automake-&am-minor-version;, and
[fe05b08]83 /usr/share/doc/automake-&automake-version;</seg>
[50e693d]84 </seglistitem>
85 </segmentedlist>
86
87 <variablelist>
88 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
89 <?dbfo list-presentation="list"?>
90 <?dbhtml list-presentation="table"?>
91
92 <varlistentry id="aclocal">
93 <term><command>aclocal</command></term>
94 <listitem>
95 <para>Generates <filename>aclocal.m4</filename> files based on the
96 contents of <filename>configure.in</filename> files</para>
97 <indexterm zone="ch-system-automake aclocal">
98 <primary sortas="b-aclocal">aclocal</primary>
99 </indexterm>
100 </listitem>
101 </varlistentry>
102
[7a27279c]103 <varlistentry id="aclocalversion">
[970a126]104 <term><command>aclocal-&am-minor-version;</command></term>
[50e693d]105 <listitem>
106 <para>A hard link to <command>aclocal</command></para>
[7a27279c]107 <indexterm zone="ch-system-automake aclocalversion">
[970a126]108 <primary sortas="b-aclocal-&am-minor-version;">aclocal-&am-minor-version;</primary>
[50e693d]109 </indexterm>
110 </listitem>
111 </varlistentry>
112
113 <varlistentry id="automake">
114 <term><command>automake</command></term>
115 <listitem>
116 <para>A tool for automatically generating
117 <filename>Makefile.in</filename> files from
[7bb9fda]118 <filename>Makefile.am</filename> files [To create all the
[50e693d]119 <filename>Makefile.in</filename> files for a package, run this program
120 in the top-level directory. By scanning the
121 <filename>configure.in</filename> file, it automatically finds each
122 appropriate <filename>Makefile.am</filename> file and generates the
[7bb9fda]123 corresponding <filename>Makefile.in</filename> file.]</para>
[50e693d]124 <indexterm zone="ch-system-automake automake">
125 <primary sortas="b-automake">automake</primary>
126 </indexterm>
127 </listitem>
128 </varlistentry>
129
130 <varlistentry id="automake-version">
[970a126]131 <term><command>automake-&am-minor-version;</command></term>
[50e693d]132 <listitem>
133 <para>A hard link to <command>automake</command></para>
134 <indexterm zone="ch-system-automake automake-version">
[970a126]135 <primary sortas="b-automake-&am-minor-version;">automake-&am-minor-version;</primary>
[50e693d]136 </indexterm>
137 </listitem>
138 </varlistentry>
139
140 </variablelist>
141
142 </sect2>
[673b0d8]143
144</sect1>
Note: See TracBrowser for help on using the repository browser.