source: clfs-sysroot/BOOK/final-system/common/make.xml @ 59fb197

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

r3633@server (orig r1649): jciccone | 2006-05-25 16:48:42 -0700
Added the Initial clfs-2.0 branch using sysroot builds.

  • Property mode set to 100644
File size: 1.8 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  %general-entities;
6]>
7
8<sect1 id="ch-system-make" role="wrap">
9  <?dbhtml filename="make.html"?>
10
11  <title>Make-&make-version;</title>
12
13  <indexterm zone="ch-system-make">
14    <primary sortas="a-Make">Make</primary>
15  </indexterm>
16
17  <sect2 role="package">
18    <title/>
19
20    <para>The Make package contains a program for compiling packages.</para>
21
22  </sect2>
23
24  <sect2 role="installation">
25    <title>Installation of Make</title>
26
27    <para os="a">Prepare Make for compilation:</para>
28
29<screen os="b"><userinput>./configure --prefix=/usr --host=${LFS_TARGET}</userinput></screen>
30
31    <para os="c">Compile the package:</para>
32
33<screen os="d"><userinput>make</userinput></screen>
34
35    <para os="e">Install the package:</para>
36
37<screen os="f"><userinput>make DESTDIR=${LFS} install</userinput></screen>
38
39  </sect2>
40
41  <sect2 id="contents-make" role="content">
42    <title>Contents of Make</title>
43
44    <segmentedlist>
45      <segtitle>Installed program</segtitle>
46
47      <seglistitem>
48        <seg>make</seg>
49      </seglistitem>
50    </segmentedlist>
51
52    <variablelist>
53      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
54      <?dbfo list-presentation="list"?>
55      <?dbhtml list-presentation="table"?>
56
57      <varlistentry id="make">
58        <term><command>make</command></term>
59        <listitem>
60          <para>Automatically determines which pieces of a package need to
61          be (re)compiled and then issues the relevant commands</para>
62          <indexterm zone="ch-system-make make">
63            <primary sortas="b-make">make</primary>
64          </indexterm>
65        </listitem>
66      </varlistentry>
67
68    </variablelist>
69
70  </sect2>
71
72</sect1>
Note: See TracBrowser for help on using the repository browser.