source: final-system/common/make.xml @ bf8c11f

Last change on this file since bf8c11f was bf8c11f, checked in by Jim Gifford <clfs@…>, 18 years ago

r627@server (orig r625): jim | 2005-10-31 12:59:34 -0800
Import of Cross-LFS Book

  • Property mode set to 100644
File size: 2.4 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>&buildtime;</segtitle>
26      <segtitle>&diskspace;</segtitle>
27
28      <seglistitem>
29        <seg>Not checked yet</seg>
30        <seg>Not checked yet</seg>
31      </seglistitem>
32    </segmentedlist>
33
34    <segmentedlist>
35      <segtitle>&dependencies;</segtitle>
36
37      <seglistitem>
38        <seg>Bash, Binutils, Coreutils, Diffutils, GCC, Gettext,
39        Glibc, Grep, and Sed</seg>
40      </seglistitem>
41    </segmentedlist>
42
43  </sect2>
44
45  <sect2 role="installation">
46    <title>Installation of Make</title>
47
48    <para os="a">Prepare Make for compilation:</para>
49
50<screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
51
52    <para os="c">Compile the package:</para>
53
54<screen os="d"><userinput>make</userinput></screen>
55
56    <para os="e">To test the results, issue:
57    <userinput>make check</userinput>.</para>
58
59    <para os="f">Install the package:</para>
60
61<screen os="g"><userinput>make install</userinput></screen>
62
63  </sect2>
64
65  <sect2 id="contents-make" role="content">
66    <title>Contents of Make</title>
67
68    <segmentedlist>
69      <segtitle>Installed program</segtitle>
70
71      <seglistitem>
72        <seg>make</seg>
73      </seglistitem>
74    </segmentedlist>
75
76    <variablelist>
77      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
78      <?dbfo list-presentation="list"?>
79      <?dbhtml list-presentation="table"?>
80
81      <varlistentry id="make">
82        <term><command>make</command></term>
83        <listitem>
84          <para>Automatically determines which pieces of a package need to
85          be (re)compiled and then issues the relevant commands</para>
86          <indexterm zone="ch-system-make make">
87            <primary sortas="b-make">make</primary>
88          </indexterm>
89        </listitem>
90      </varlistentry>
91
92    </variablelist>
93
94  </sect2>
95
96</sect1>
Note: See TracBrowser for help on using the repository browser.