source: BOOK/final-system/common/make.xml @ 3373dd11

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 3373dd11 was 3373dd11, checked in by Jim Gifford <clfs@…>, 18 years ago

r668@server (orig r666): manuel | 2005-11-08 15:25:13 -0800
Removing SBUs and DUs. Chapter final-system, round 6.

  • Property mode set to 100644
File size: 2.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3  "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4  <!ENTITY % general-entities SYSTEM "../../general.ent">
5  <!ENTITY % patches-entities SYSTEM "../../patches.ent">
6  %general-entities;
7  %patches-entities;
8]>
9
10<sect1 id="ch-system-make" role="wrap">
11  <?dbhtml filename="make.html"?>
12
13  <title>Make-&make-version;</title>
14
15  <indexterm zone="ch-system-make">
16    <primary sortas="a-Make">Make</primary>
17  </indexterm>
18
19  <sect2 role="package">
20    <title/>
21
22    <para>The Make package contains a program for compiling packages.</para>
23
24    <segmentedlist>
25      <segtitle>&dependencies;</segtitle>
26
27      <seglistitem>
28        <seg>Bash, Binutils, Coreutils, Diffutils, GCC, Gettext,
29        Glibc, Grep, and Sed</seg>
30      </seglistitem>
31    </segmentedlist>
32
33  </sect2>
34
35  <sect2 role="installation">
36    <title>Installation of Make</title>
37
38    <para os="a">Prepare Make for compilation:</para>
39
40<screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
41
42    <para os="c">Compile the package:</para>
43
44<screen os="d"><userinput>make</userinput></screen>
45
46    <para os="e">To test the results, issue:
47    <userinput>make check</userinput>.</para>
48
49    <para os="f">Install the package:</para>
50
51<screen os="g"><userinput>make install</userinput></screen>
52
53  </sect2>
54
55  <sect2 id="contents-make" role="content">
56    <title>Contents of Make</title>
57
58    <segmentedlist>
59      <segtitle>Installed program</segtitle>
60
61      <seglistitem>
62        <seg>make</seg>
63      </seglistitem>
64    </segmentedlist>
65
66    <variablelist>
67      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
68      <?dbfo list-presentation="list"?>
69      <?dbhtml list-presentation="table"?>
70
71      <varlistentry id="make">
72        <term><command>make</command></term>
73        <listitem>
74          <para>Automatically determines which pieces of a package need to
75          be (re)compiled and then issues the relevant commands</para>
76          <indexterm zone="ch-system-make make">
77            <primary sortas="b-make">make</primary>
78          </indexterm>
79        </listitem>
80      </varlistentry>
81
82    </variablelist>
83
84  </sect2>
85
86</sect1>
Note: See TracBrowser for help on using the repository browser.