source: chapter08/automake.xml@ 9c7437f

12.2 12.2-rc1 multilib trunk xry111/arm64 xry111/clfs-ng xry111/loongarch xry111/loongarch-12.2 xry111/multilib
Last change on this file since 9c7437f was 340e17a, checked in by Bruce Dubbs <bdubbs@…>, 4 months ago

Package updates.
Update to vim-9.1.0405.
Update to util-linux-2.40.1.
Update to linux-6.8.9.
Update to jinja2-3.1.4 (Python mpdule).
Update to iana-etc-20240502.
Update to gcc-14.1.0.

  • Property mode set to 100644
File size: 5.0 KB
RevLine 
[7152faa]1<?xml version="1.0" encoding="UTF-8"?>
[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>
[0b105455]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>
[0b105455]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
[c17a774]56 <para>Using four parallel jobs speeds up the tests, even on systems with
57 less logical cores, due to internal delays in individual tests. To test
[d4bf7ab]58 the results, issue:</para>
[0445a3d]59
[c17a774]60<screen><userinput remap="test">make <replaceable>-j$(($(nproc)&gt;4?$(nproc):4))</replaceable> check</userinput></screen>
61
62 <para>Replace <replaceable>$((...))</replaceable> with the number of
63 logical cores you want to use if you don't want to use all.</para>
[fa32551]64
[340e17a]65 <para>Out of 2926 tests, 52 are known to fail due to incompatibilities in the
66 test scripts with gcc-14.1 or later.</para>
[fa32551]67
[50e693d]68 <para>Install the package:</para>
[73aedd1d]69
[0445a3d]70<screen><userinput remap="install">make install</userinput></screen>
[73aedd1d]71
[50e693d]72 </sect2>
73
74
75 <sect2 id="contents-automake" role="content">
76 <title>Contents of Automake</title>
77
78 <segmentedlist>
79 <segtitle>Installed programs</segtitle>
[fe05b08]80 <segtitle>Installed directories</segtitle>
[50e693d]81
82 <seglistitem>
[040ecb6]83 <seg>aclocal, aclocal-&am-minor-version; (hard linked with aclocal), automake, and
84 automake-&am-minor-version; (hard linked with automake) </seg>
[7bb9fda]85 <seg>/usr/share/aclocal-&am-minor-version;, /usr/share/automake-&am-minor-version;, and
[fe05b08]86 /usr/share/doc/automake-&automake-version;</seg>
[50e693d]87 </seglistitem>
88 </segmentedlist>
89
90 <variablelist>
91 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
92 <?dbfo list-presentation="list"?>
93 <?dbhtml list-presentation="table"?>
94
95 <varlistentry id="aclocal">
96 <term><command>aclocal</command></term>
97 <listitem>
98 <para>Generates <filename>aclocal.m4</filename> files based on the
99 contents of <filename>configure.in</filename> files</para>
100 <indexterm zone="ch-system-automake aclocal">
101 <primary sortas="b-aclocal">aclocal</primary>
102 </indexterm>
103 </listitem>
104 </varlistentry>
105
[7a27279c]106 <varlistentry id="aclocalversion">
[970a126]107 <term><command>aclocal-&am-minor-version;</command></term>
[50e693d]108 <listitem>
109 <para>A hard link to <command>aclocal</command></para>
[7a27279c]110 <indexterm zone="ch-system-automake aclocalversion">
[970a126]111 <primary sortas="b-aclocal-&am-minor-version;">aclocal-&am-minor-version;</primary>
[50e693d]112 </indexterm>
113 </listitem>
114 </varlistentry>
115
116 <varlistentry id="automake">
117 <term><command>automake</command></term>
118 <listitem>
119 <para>A tool for automatically generating
120 <filename>Makefile.in</filename> files from
[7bb9fda]121 <filename>Makefile.am</filename> files [To create all the
[50e693d]122 <filename>Makefile.in</filename> files for a package, run this program
123 in the top-level directory. By scanning the
124 <filename>configure.in</filename> file, it automatically finds each
125 appropriate <filename>Makefile.am</filename> file and generates the
[7bb9fda]126 corresponding <filename>Makefile.in</filename> file.]</para>
[50e693d]127 <indexterm zone="ch-system-automake automake">
128 <primary sortas="b-automake">automake</primary>
129 </indexterm>
130 </listitem>
131 </varlistentry>
132
133 <varlistentry id="automake-version">
[970a126]134 <term><command>automake-&am-minor-version;</command></term>
[50e693d]135 <listitem>
136 <para>A hard link to <command>automake</command></para>
137 <indexterm zone="ch-system-automake automake-version">
[970a126]138 <primary sortas="b-automake-&am-minor-version;">automake-&am-minor-version;</primary>
[50e693d]139 </indexterm>
140 </listitem>
141 </varlistentry>
142
143 </variablelist>
144
145 </sect2>
[673b0d8]146
147</sect1>
Note: See TracBrowser for help on using the repository browser.