source: chapter06/make.xml@ 90bfa70

Last change on this file since 90bfa70 was 6a0e6f3, checked in by Matthew Burgess <matthew@…>, 20 years ago
  • Remove the spurious <info> tags that I thought were necessary but evidently aren't

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/LFS-RNG/BOOK@4387 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 1.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE section [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<section xmlns="http://docbook.org/docbook-ng"
7 xml:id="ch-system-make" xreflabel="Make" role="wrap">
8<title>Make-&make-version;</title>
9<?dbhtml filename="make.html"?>
10
11<indexterm zone="ch-system-make"><primary sortas="a-Make">Make</primary></indexterm>
12
13<section role="package"><title/>
14<para>The Make package contains a program for compiling large packages.</para>
15
16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>0.2 SBU</seg><seg>8.8 MB</seg></seglistitem>
20</segmentedlist>
21
22<segmentedlist>
23<segtitle>Make installation depends on</segtitle>
24<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
25GCC, Gettext, Glibc, Grep, Sed</seg></seglistitem>
26</segmentedlist>
27</section>
28
29<section role="installation">
30<title>Installation of Make</title>
31
32<para>Prepare Make for compilation:</para>
33
34<screen><userinput>./configure --prefix=/usr</userinput></screen>
35
36<para>Compile the package:</para>
37
38<screen><userinput>make</userinput></screen>
39
40<para>To test the results, issue:
41<userinput>make check</userinput>.</para>
42
43<para>Now install the package:</para>
44
45<screen><userinput>make install</userinput></screen>
46
47</section>
48
49
50<section xml:id="contents-make" role="content"><title>Contents of Make</title>
51
52<segmentedlist>
53<segtitle>Installed program</segtitle>
54<seglistitem><seg>make</seg></seglistitem>
55</segmentedlist>
56
57<variablelist><title>Short descriptions</title>
58
59<varlistentry xml:id="make">
60<term><command>make</command></term>
61<listitem>
62<indexterm zone="ch-system-make make"><primary sortas="b-make">make</primary></indexterm>
63<para>automatically determines which pieces of a large package need to be
64recompiled, and then issues the relevant commands.</para>
65</listitem>
66</varlistentry>
67</variablelist>
68
69</section>
70
71</section>
Note: See TracBrowser for help on using the repository browser.