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

Last change on this file since ccbeb45 was 12e6567, checked in by Joe Ciccone <jciccone@…>, 15 years ago

Added a sysroot wrapper.
Updated the build variables section of the book, each package uses its own.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
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 <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 &env-target;
25
26 <sect2 role="installation">
27 <title>Installation of Make</title>
28
29 <para os="a">Prepare Make for compilation:</para>
30
31<screen os="b"><userinput>./configure --build=${CLFS_HOST} --host=${CLFS_TARGET} \
32 --prefix=/usr</userinput></screen>
33
34 <para os="c">Compile the package:</para>
35
36<screen os="d"><userinput>make</userinput></screen>
37
38 <para os="e">Install the package:</para>
39
40<screen os="f"><userinput>make DESTDIR=${CLFS} install</userinput></screen>
41
42 </sect2>
43
44 <sect2 id="contents-make" role="content">
45 <title>Contents of Make</title>
46
47 <segmentedlist>
48 <segtitle>Installed program</segtitle>
49
50 <seglistitem>
51 <seg>make</seg>
52 </seglistitem>
53 </segmentedlist>
54
55 <variablelist>
56 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
57 <?dbfo list-presentation="list"?>
58 <?dbhtml list-presentation="table"?>
59
60 <varlistentry id="make">
61 <term><command>make</command></term>
62 <listitem>
63 <para>Automatically determines which pieces of a package need to
64 be (re)compiled and then issues the relevant commands</para>
65 <indexterm zone="ch-system-make make">
66 <primary sortas="b-make">make</primary>
67 </indexterm>
68 </listitem>
69 </varlistentry>
70
71 </variablelist>
72
73 </sect2>
74
75</sect1>
Note: See TracBrowser for help on using the repository browser.