aboutsummaryrefslogtreecommitdiffstats
path: root/chapter08/make.xml
blob: 80abcd128c9958f27f26483b0c69aa845b9a44af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  <!ENTITY % general-entities SYSTEM "../general.ent">
  %general-entities;
]>

<sect1 id="ch-system-make" role="wrap">
  <?dbhtml filename="make.html"?>

  <sect1info condition="script">
    <productname>make</productname>
    <productnumber>&make-version;</productnumber>
    <address>&make-url;</address>
  </sect1info>

  <title>Make-&make-version;</title>

  <indexterm zone="ch-system-make">
    <primary sortas="a-Make">Make</primary>
  </indexterm>

  <sect2 role="package">
    <title/>

    <para>The Make package contains a program for controlling the generation of
    executables and other non-source files of a package from source files.</para>

    <segmentedlist>
      <segtitle>&buildtime;</segtitle>
      <segtitle>&diskspace;</segtitle>

      <seglistitem>
        <seg>&make-fin-sbu;</seg>
        <seg>&make-fin-du;</seg>
      </seglistitem>
    </segmentedlist>

  </sect2>

  <sect2 role="installation">
    <title>Installation of Make</title>

    <para>Prepare Make for compilation:</para>

<screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>

    <para>Compile the package:</para>

<screen><userinput remap="make">make</userinput></screen>

    <!-- Running tests as root causes failures:
         https://savannah.gnu.org/bugs/?63852 -->
    <para>To test the results, issue:</para>

<screen><userinput remap="test">chown -Rv tester .
su tester -c "PATH=$PATH make check"</userinput></screen>

    <para>Install the package:</para>

<screen><userinput remap="install">make install</userinput></screen>

  </sect2>


  <sect2 id="contents-make" role="content">
    <title>Contents of Make</title>

    <segmentedlist>
      <segtitle>Installed program</segtitle>

      <seglistitem>
        <seg>make</seg>
      </seglistitem>
    </segmentedlist>

    <variablelist>
      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
      <?dbfo list-presentation="list"?>
      <?dbhtml list-presentation="table"?>

      <varlistentry id="make">
        <term><command>make</command></term>
        <listitem>
          <para>Automatically determines which pieces of a package need to
          be (re)compiled and then issues the relevant commands</para>
          <indexterm zone="ch-system-make make">
            <primary sortas="b-make">make</primary>
          </indexterm>
        </listitem>
      </varlistentry>

    </variablelist>

  </sect2>

</sect1>