source: chapter06/make.xml@ c62cd46

7.5-systemd 7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since c62cd46 was dfdc93a, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Apply upstream patches to make

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

  • Property mode set to 100644
File size: 2.5 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[bdea25ce]7
[81fd230]8<sect1 id="ch-system-make" role="wrap">
[bdea25ce]9 <?dbhtml filename="make.html"?>
10
[e747759]11 <sect1info condition="script">
12 <productname>make</productname>
13 <productnumber>&make-version;</productnumber>
14 <address>&make-url;</address>
15 </sect1info>
16
[bdea25ce]17 <title>Make-&make-version;</title>
18
19 <indexterm zone="ch-system-make">
20 <primary sortas="a-Make">Make</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The Make package contains a program for compiling packages.</para>
[673b0d8]27
[bdea25ce]28 <segmentedlist>
29 <segtitle>&buildtime;</segtitle>
30 <segtitle>&diskspace;</segtitle>
[6370fa6]31
[bdea25ce]32 <seglistitem>
[e4a5635]33 <seg>&make-ch6-sbu;</seg>
34 <seg>&make-ch6-du;</seg>
[bdea25ce]35 </seglistitem>
36 </segmentedlist>
[5888299]37
[bdea25ce]38 </sect2>
[73aedd1d]39
[bdea25ce]40 <sect2 role="installation">
41 <title>Installation of Make</title>
42
[dfdc93a]43 <para>First apply some upstream patches:</para>
44
45<screen><userinput remap="configure">patch -Np1 -i ../&make-fixes-patch;</userinput></screen>
46
[bdea25ce]47 <para>Prepare Make for compilation:</para>
[73aedd1d]48
[0445a3d]49<screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>
[73aedd1d]50
[bdea25ce]51 <para>Compile the package:</para>
[73aedd1d]52
[0445a3d]53<screen><userinput remap="make">make</userinput></screen>
[73aedd1d]54
[0445a3d]55 <para>To test the results, issue:</para>
56
57<screen><userinput remap="test">make check</userinput></screen>
[73aedd1d]58
[bdea25ce]59 <para>Install the package:</para>
[73aedd1d]60
[0445a3d]61<screen><userinput remap="install">make install</userinput></screen>
[73aedd1d]62
[bdea25ce]63 </sect2>
[6370fa6]64
[5888299]65
[bdea25ce]66 <sect2 id="contents-make" role="content">
67 <title>Contents of Make</title>
[673b0d8]68
[bdea25ce]69 <segmentedlist>
70 <segtitle>Installed program</segtitle>
[81fd230]71
[bdea25ce]72 <seglistitem>
73 <seg>make</seg>
74 </seglistitem>
75 </segmentedlist>
[81fd230]76
[bdea25ce]77 <variablelist>
78 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
79 <?dbfo list-presentation="list"?>
80 <?dbhtml list-presentation="table"?>
[673b0d8]81
[bdea25ce]82 <varlistentry id="make">
83 <term><command>make</command></term>
84 <listitem>
85 <para>Automatically determines which pieces of a package need to
86 be (re)compiled and then issues the relevant commands</para>
87 <indexterm zone="ch-system-make make">
88 <primary sortas="b-make">make</primary>
89 </indexterm>
90 </listitem>
91 </varlistentry>
[673b0d8]92
[bdea25ce]93 </variablelist>
[81fd230]94
[bdea25ce]95 </sect2>
96
97</sect1>
Note: See TracBrowser for help on using the repository browser.