source: chapter06/automake.xml@ b2f3f15

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 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 b2f3f15 was b2f3f15, checked in by Bruce Dubbs <bdubbs@…>, 7 years ago

Update to gcc-6.3.0.
Update to gmp-6.1.2.
Update to iproute2-4.9.0.
Update to man-pages-4.09.
Update to man-db-2.7.6.1.
Update to linux-4.9.
Update to eudev-3.2.1.

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

  • Property mode set to 100644
File size: 5.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-automake" role="wrap">
9 <?dbhtml filename="automake.html"?>
10
11 <sect1info condition="script">
12 <productname>automake</productname>
13 <productnumber>&automake-version;</productnumber>
14 <address>&automake-url;</address>
15 </sect1info>
16
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/>
25
26 <para>The Automake package contains programs for generating Makefiles for use
27 with Autoconf.</para>
28
29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
32
33 <seglistitem>
34 <seg>&automake-ch6-sbu;</seg>
35 <seg>&automake-ch6-du;</seg>
36 </seglistitem>
37 </segmentedlist>
38
39 </sect2>
40
41 <sect2 role="installation">
42 <title>Installation of Automake</title>
43
44 <para>First fix a warning that is caused by perl-5.22 and later:</para>
45
46<screen><userinput remap="pre">sed -i 's:/\\\${:/\\\$\\{:' bin/automake.in</userinput></screen>
47
48 <para>Prepare Automake for compilation:</para>
49
50<screen><userinput remap="configure">./configure --prefix=/usr --docdir=/usr/share/doc/automake-&automake-version;</userinput></screen>
51
52 <para>Compile the package:</para>
53
54<screen><userinput remap="make">make</userinput></screen>
55
56 <para>There are a couple of tests that incorrectly link to the
57 wrong version of the flex library, so we temporarily work around
58 the problem. Also, using the -j4 make option speeds up the tests, even on
59 systems with only one processor, due to internal delays in individual
60 tests. To test the results, issue:</para>
61
62<screen><userinput remap="test">sed -i "s:./configure:LEXLIB=/usr/lib/libfl.a &amp;:" t/lex-{clean,depend}-cxx.sh
63make -j4 check</userinput></screen>
64
65 <para>Three tests are known ot fail.</para>
66
67 <para>Install the package:</para>
68
69<screen><userinput remap="install">make install</userinput></screen>
70
71 </sect2>
72
73
74 <sect2 id="contents-automake" role="content">
75 <title>Contents of Automake</title>
76
77 <segmentedlist>
78 <segtitle>Installed programs</segtitle>
79 <segtitle>Installed directories</segtitle>
80
81 <seglistitem>
82 <seg>aclocal, aclocal-&am-minor-version; (hard linked with aclocal), automake, and
83 automake-&am-minor-version; (hard linked with automake) </seg>
84 <seg>/usr/share/aclocal-&am-minor-version;, /usr/share/automake-&am-minor-version;, and
85 /usr/share/doc/automake-&automake-version;</seg>
86 </seglistitem>
87 </segmentedlist>
88
89 <variablelist>
90 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
91 <?dbfo list-presentation="list"?>
92 <?dbhtml list-presentation="table"?>
93
94 <varlistentry id="aclocal">
95 <term><command>aclocal</command></term>
96 <listitem>
97 <para>Generates <filename>aclocal.m4</filename> files based on the
98 contents of <filename>configure.in</filename> files</para>
99 <indexterm zone="ch-system-automake aclocal">
100 <primary sortas="b-aclocal">aclocal</primary>
101 </indexterm>
102 </listitem>
103 </varlistentry>
104
105 <varlistentry id="aclocalversion">
106 <term><command>aclocal-&am-minor-version;</command></term>
107 <listitem>
108 <para>A hard link to <command>aclocal</command></para>
109 <indexterm zone="ch-system-automake aclocalversion">
110 <primary sortas="b-aclocal-&am-minor-version;">aclocal-&am-minor-version;</primary>
111 </indexterm>
112 </listitem>
113 </varlistentry>
114
115 <varlistentry id="automake">
116 <term><command>automake</command></term>
117 <listitem>
118 <para>A tool for automatically generating
119 <filename>Makefile.in</filename> files from
120 <filename>Makefile.am</filename> files [To create all the
121 <filename>Makefile.in</filename> files for a package, run this program
122 in the top-level directory. By scanning the
123 <filename>configure.in</filename> file, it automatically finds each
124 appropriate <filename>Makefile.am</filename> file and generates the
125 corresponding <filename>Makefile.in</filename> file.]</para>
126 <indexterm zone="ch-system-automake automake">
127 <primary sortas="b-automake">automake</primary>
128 </indexterm>
129 </listitem>
130 </varlistentry>
131
132 <varlistentry id="automake-version">
133 <term><command>automake-&am-minor-version;</command></term>
134 <listitem>
135 <para>A hard link to <command>automake</command></para>
136 <indexterm zone="ch-system-automake automake-version">
137 <primary sortas="b-automake-&am-minor-version;">automake-&am-minor-version;</primary>
138 </indexterm>
139 </listitem>
140 </varlistentry>
141
142 </variablelist>
143
144 </sect2>
145
146</sect1>
Note: See TracBrowser for help on using the repository browser.