Ignore:
Timestamp:
02/05/2006 01:23:58 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Children:
1798edf
Parents:
9506f85
Message:

Ported r7351 from trunk to alphabetical branch.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/make.xml

    r9506f85 r9442d266  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
     2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
     3  "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
    34  <!ENTITY % general-entities SYSTEM "../general.ent">
    45  %general-entities;
    56]>
     7
    68<sect1 id="ch-system-make" role="wrap">
    7 <title>Make-&make-version;</title>
    8 <?dbhtml filename="make.html"?>
     9  <?dbhtml filename="make.html"?>
    910
    10 <indexterm zone="ch-system-make"><primary sortas="a-Make">Make</primary></indexterm>
     11  <title>Make-&make-version;</title>
    1112
    12 <sect2 role="package"><title/>
    13 <para>The Make package contains a program for compiling packages.</para>
     13  <indexterm zone="ch-system-make">
     14    <primary sortas="a-Make">Make</primary>
     15  </indexterm>
    1416
    15 <segmentedlist>
    16 <segtitle>&buildtime;</segtitle>
    17 <segtitle>&diskspace;</segtitle>
    18 <seglistitem><seg>0.2 SBU</seg><seg>7.1 MB</seg></seglistitem>
    19 </segmentedlist>
     17  <sect2 role="package">
     18    <title/>
    2019
    21 <segmentedlist>
    22 <segtitle>&dependencies;</segtitle>
    23 <seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
    24 GCC, Gettext, Glibc, Grep, and Sed</seg></seglistitem>
    25 </segmentedlist>
    26 </sect2>
     20    <para>The Make package contains a program for compiling packages.</para>
    2721
    28 <sect2 role="installation">
    29 <title>Installation of Make</title>
     22    <segmentedlist>
     23      <segtitle>&buildtime;</segtitle>
     24      <segtitle>&diskspace;</segtitle>
    3025
    31 <para>Prepare Make for compilation:</para>
     26      <seglistitem>
     27        <seg>0.2 SBU</seg>
     28        <seg>7.1 MB</seg>
     29      </seglistitem>
     30    </segmentedlist>
     31
     32    <segmentedlist>
     33      <segtitle>&dependencies;</segtitle>
     34
     35      <seglistitem>
     36        <seg>Bash, Binutils, Coreutils, Diffutils, GCC, Gettext, Glibc,
     37        Grep, and Sed</seg>
     38      </seglistitem>
     39    </segmentedlist>
     40
     41  </sect2>
     42
     43  <sect2 role="installation">
     44    <title>Installation of Make</title>
     45
     46    <para>Prepare Make for compilation:</para>
    3247
    3348<screen><userinput>./configure --prefix=/usr</userinput></screen>
    3449
    35 <para>Compile the package:</para>
     50    <para>Compile the package:</para>
    3651
    3752<screen><userinput>make</userinput></screen>
    3853
    39 <para>To test the results, issue:
    40 <userinput>make check</userinput>.</para>
     54    <para>To test the results, issue:
     55    <userinput>make check</userinput>.</para>
    4156
    42 <para>Install the package:</para>
     57    <para>Install the package:</para>
    4358
    4459<screen><userinput>make install</userinput></screen>
    4560
    46 </sect2>
     61  </sect2>
    4762
    4863
    49 <sect2 id="contents-make" role="content"><title>Contents of Make</title>
     64  <sect2 id="contents-make" role="content">
     65    <title>Contents of Make</title>
    5066
    51 <segmentedlist>
    52 <segtitle>Installed program</segtitle>
    53 <seglistitem><seg>make</seg></seglistitem>
    54 </segmentedlist>
     67    <segmentedlist>
     68      <segtitle>Installed program</segtitle>
    5569
    56 <variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
    57 <?dbfo list-presentation="list"?>
    58 <?dbhtml list-presentation="table"?>
     70      <seglistitem>
     71        <seg>make</seg>
     72      </seglistitem>
     73    </segmentedlist>
    5974
    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"><primary sortas="b-make">make</primary></indexterm>
    66 </listitem>
    67 </varlistentry>
    68 </variablelist>
     75    <variablelist>
     76      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
     77      <?dbfo list-presentation="list"?>
     78      <?dbhtml list-presentation="table"?>
    6979
    70 </sect2>
     80      <varlistentry id="make">
     81        <term><command>make</command></term>
     82        <listitem>
     83          <para>Automatically determines which pieces of a package need to
     84          be (re)compiled and then issues the relevant commands</para>
     85          <indexterm zone="ch-system-make make">
     86            <primary sortas="b-make">make</primary>
     87          </indexterm>
     88        </listitem>
     89      </varlistentry>
     90
     91    </variablelist>
     92
     93  </sect2>
    7194
    7295</sect1>
    73 
Note: See TracChangeset for help on using the changeset viewer.