source: chapter08/make.xml

trunk
Last change on this file was 9c73d911, checked in by Xi Ruoyao <xry111@…>, 3 months ago

Remove -v from "chown -R tester" commands

It does no good: normally we have -v for chown so once it no longer has
an effect we can know, but in this case these chown commands will never
have no effect. And a huge amount of output with -v wastes the server
storage and bandwidth (for both the server and the people reading the
build logs).

  • Property mode set to 100644
File size: 2.5 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
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>Prepare Make for compilation:</para>
45
46<screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>
47
48 <para>Compile the package:</para>
49
50<screen><userinput remap="make">make</userinput></screen>
51
52 <!-- Running tests as root causes failures:
53 https://savannah.gnu.org/bugs/?63852 -->
54 <para>To test the results, issue:</para>
55
56<screen><userinput remap="test">chown -R tester .
57su tester -c "PATH=$PATH make check"</userinput></screen>
58
59 <para>Install the package:</para>
60
61<screen><userinput remap="install">make install</userinput></screen>
62
63 </sect2>
64
65
66 <sect2 id="contents-make" role="content">
67 <title>Contents of Make</title>
68
69 <segmentedlist>
70 <segtitle>Installed program</segtitle>
71
72 <seglistitem>
73 <seg>make</seg>
74 </seglistitem>
75 </segmentedlist>
76
77 <variablelist>
78 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
79 <?dbfo list-presentation="list"?>
80 <?dbhtml list-presentation="table"?>
81
82 <varlistentry id="make">
83 <term><command>make</command></term>
84 <listitem>
85 <para>Automatically determines which pieces of a package need to
86 be (re)compiled and then issues the relevant commands</para>
87 <indexterm zone="ch-system-make make">
88 <primary sortas="b-make">make</primary>
89 </indexterm>
90 </listitem>
91 </varlistentry>
92
93 </variablelist>
94
95 </sect2>
96
97</sect1>
Note: See TracBrowser for help on using the repository browser.