source: chapter08/make.xml@ 2ef64c4

xry111/clfs-ng
Last change on this file since 2ef64c4 was 9292384, checked in by Bruce Dubbs <bdubbs@…>, 18 months ago

Package updates and a fix.

Fix make-4.4 bug.
Update to wheel-0.38.4 (Python Module).
Update to texinfo-7.0.
Update to sysvinit-3.05.
Update to shadow-4.13.
Update to sed-4.9.
Update to meson-0.64.0.
Update to linux-6.0.7.
Update to elfutils-0.188.
Update to bc-6.1.1.

  • Property mode set to 100644
File size: 2.6 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-make" role="wrap">
9 <?dbhtml filename="make.html"?>
10
11 <sect1info condition="script">
12 <productname>make</productname>
13 <productnumber>&make-version;</productnumber>
14 <address>&make-url;</address>
15 </sect1info>
16
17 <title>Make-&make-version;</title>
18
19 <indexterm zone="ch-system-make">
20 <primary sortas="a-Make">Make</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The Make package contains a program for controlling the generation of
27 executables and other non-source files of a package from source files.</para>
28
29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
32
33 <seglistitem>
34 <seg>&make-fin-sbu;</seg>
35 <seg>&make-fin-du;</seg>
36 </seglistitem>
37 </segmentedlist>
38
39 </sect2>
40
41 <sect2 role="installation">
42 <title>Installation of Make</title>
43
44 <para>First, fix some issues identified upstream:</para>
45
46<screen><userinput remap="pre">sed -e '/ifdef SIGPIPE/,+2 d' \
47 -e '/undef FATAL_SIG/i FATAL_SIG (SIGPIPE);' \
48 -i src/main.c</userinput></screen>
49
50 <para>Prepare Make for compilation:</para>
51
52<screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>
53
54 <para>Compile the package:</para>
55
56<screen><userinput remap="make">make</userinput></screen>
57
58 <para>To test the results, issue:</para>
59
60<screen><userinput remap="test">make check</userinput></screen>
61
62 <para>Install the package:</para>
63
64<screen><userinput remap="install">make install</userinput></screen>
65
66 </sect2>
67
68
69 <sect2 id="contents-make" role="content">
70 <title>Contents of Make</title>
71
72 <segmentedlist>
73 <segtitle>Installed program</segtitle>
74
75 <seglistitem>
76 <seg>make</seg>
77 </seglistitem>
78 </segmentedlist>
79
80 <variablelist>
81 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
82 <?dbfo list-presentation="list"?>
83 <?dbhtml list-presentation="table"?>
84
85 <varlistentry id="make">
86 <term><command>make</command></term>
87 <listitem>
88 <para>Automatically determines which pieces of a package need to
89 be (re)compiled and then issues the relevant commands</para>
90 <indexterm zone="ch-system-make make">
91 <primary sortas="b-make">make</primary>
92 </indexterm>
93 </listitem>
94 </varlistentry>
95
96 </variablelist>
97
98 </sect2>
99
100</sect1>
Note: See TracBrowser for help on using the repository browser.