Changeset 323252bf


Ignore:
Timestamp:
08/15/2003 10:38:17 PM (21 years ago)
Author:
Alex Gronenwoud <alex@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, v5_0, v5_1, v5_1_1, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
2cff2cc
Parents:
6e3b255
Message:

added more text in chapter 5, from Make to Texinfo

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

Location:
chapter05
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • chapter05/gettext-inst.xml

    r6e3b255 r323252bf  
    44<title>Installation of Gettext</title>
    55
    6 <para><screen><userinput>./configure --prefix=/stage1
    7 make
    8 make check
    9 make install</userinput></screen></para>
     6<para>Prepare Gettext to be compiled:</para>
    107
     8<para><screen><userinput>./configure --prefix=/stage1</userinput></screen></para>
     9
     10<para>Compile the programs:</para>
     11
     12<para><screen><userinput>make </userinput></screen></para>
     13
     14<para>Check that the programs work correctly (this takes so long you can go
     15for a walk):</para>
     16
     17<para><screen><userinput>make check</userinput></screen></para>
     18
     19<para>Then install them and their documentation:</para>
     20
     21<para><screen><userinput>make install</userinput></screen></para>
    1122
    1223</sect2>
  • chapter05/grep-inst.xml

    r6e3b255 r323252bf  
    44<title>Installation of Grep</title>
    55
     6<para>Prepare Grep to be compiled:</para>
     7
    68<para><screen><userinput>./configure --prefix=/stage1 \
    7 &nbsp;&nbsp;&nbsp;&nbsp;--disable-perl-regexp --with-included-regex
    8 make
    9 make check
    10 make install</userinput></screen></para>
     9&nbsp;&nbsp;&nbsp;&nbsp;--disable-perl-regexp --with-included-regex</userinput></screen></para>
    1110
     11<para>Compile the programs:</para>
     12
     13<para><screen><userinput>make </userinput></screen></para>
     14
     15<para>Check that the programs work correctly:</para>
     16
     17<para><screen><userinput>make check</userinput></screen></para>
     18
     19<para>Then install them and their documentation:</para>
     20
     21<para><screen><userinput>make install</userinput></screen></para>
    1222
    1323</sect2>
  • chapter05/make-inst.xml

    r6e3b255 r323252bf  
    44<title>Installation of Make</title>
    55
    6 <para><screen><userinput>./configure --prefix=/stage1
    7 make
    8 make check
    9 make install</userinput></screen></para>
     6<para>Prepare Make to be compiled:</para>
     7
     8<para><screen><userinput>./configure --prefix=/stage1</userinput></screen></para>
     9
     10<para>Compile the program:</para>
     11
     12<para><screen><userinput>make </userinput></screen></para>
     13
     14<para>Test the program:</para>
     15
     16<para><screen><userinput>make check</userinput></screen></para>
     17
     18<para>Then install it and its documentation:</para>
     19
     20<para><screen><userinput>make install</userinput></screen></para>
    1021
    1122</sect2>
  • chapter05/ncurses-inst.xml

    r6e3b255 r323252bf  
    44<title>Installation of Ncurses</title>
    55
     6<para>Fix two minor things:</para>
     7
    68<para><screen><userinput>patch -Np1 -i ../ncurses-&ncurses-version;-etip-2.patch
    7 patch -Np1 -i ../ncurses-&ncurses-version;-vsscanf.patch
    8 ./configure --prefix=/stage1 --with-shared --without-debug \
    9 &nbsp;&nbsp;&nbsp;&nbsp;--without-ada
    10 make
    11 make install
    12 chmod 755 /stage1/lib/*.5.3</userinput></screen></para>
     9patch -Np1 -i ../ncurses-&ncurses-version;-vsscanf.patch</userinput></screen></para>
     10
     11<para>The first patch corrects the <filename>etip.h</filename> header file, and
     12the second patch prevents some compiler warnings being issued on the use of
     13deprecated headers.</para>
     14
     15<para>Now prepare Ncurses to be compiled:</para>
     16
     17<para><screen><userinput>./configure --prefix=/stage1 --with-shared \
     18&nbsp;&nbsp;&nbsp;&nbsp;--without-debug --without-ada</userinput></screen></para>
     19
     20<para>Compile the programs and libraries:</para>
     21
     22<para><screen><userinput>make </userinput></screen></para>
     23
     24<para>Then install them and their documentation:</para>
     25
     26<para><screen><userinput>make install</userinput></screen></para>
     27
     28<para>And make some of the libraries executable:</para>
     29
     30<para><screen><userinput>chmod 755 /stage1/lib/*.5.3</userinput></screen></para>
     31
    1332</sect2>
    1433
  • chapter05/patch-inst.xml

    r6e3b255 r323252bf  
    44<title>Installation of Patch</title>
    55
    6 <para><screen><userinput>CPPFLAGS=-D_GNU_SOURCE ./configure --prefix=/stage1
    7 make
    8 make install</userinput></screen></para>
     6<para>Prepare Patch to be compiled:</para>
    97
     8<para><screen><userinput>CPPFLAGS=-D_GNU_SOURCE ./configure --prefix=/stage1</userinput></screen></para>
     9
     10<para>The preprocessor flag <userinput>-D_GNU_SOURCE</userinput> is only needed
     11on the PowerPC platform. On other architectures you can leave it out.</para>
     12
     13<para>Compile the program:</para>
     14
     15<para><screen><userinput>make </userinput></screen></para>
     16
     17<para>Then install it and its documentation:</para>
     18
     19<para><screen><userinput>make install</userinput></screen></para>
    1020
    1121</sect2>
  • chapter05/sed-inst.xml

    r6e3b255 r323252bf  
    44<title>Installation of Sed</title>
    55
    6 <para><screen><userinput>./configure --prefix=/stage1
    7 make
    8 make check
    9 make install</userinput></screen></para>
     6<para>Prepare Sed to be compiled:</para>
     7
     8<para><screen><userinput>./configure --prefix=/stage1</userinput></screen></para>
     9
     10<para>Compile the program:</para>
     11
     12<para><screen><userinput>make </userinput></screen></para>
     13
     14<para>Test the program:</para>
     15
     16<para><screen><userinput>make check</userinput></screen></para>
     17
     18<para>Then install it and its documentation:</para>
     19
     20<para><screen><userinput>make install</userinput></screen></para>
    1021
    1122</sect2>
  • chapter05/tar-inst.xml

    r6e3b255 r323252bf  
    44<title>Installation of Tar</title>
    55
    6 <para><screen><userinput>./configure --prefix=/stage1
    7 make
    8 make check
    9 make install</userinput></screen></para>
     6<para>Prepare Tar to be compiled:</para>
     7
     8<para><screen><userinput>./configure --prefix=/stage1</userinput></screen></para>
     9
     10<para>Compile the programs:</para>
     11
     12<para><screen><userinput>make </userinput></screen></para>
     13
     14<para>Check that the programs work correctly:</para>
     15
     16<para><screen><userinput>make check</userinput></screen></para>
     17
     18<para>Then install them and their documentation:</para>
     19
     20<para><screen><userinput>make install</userinput></screen></para>
    1021
    1122</sect2>
  • chapter05/texinfo-inst.xml

    r6e3b255 r323252bf  
    44<title>Installation of Texinfo</title>
    55
    6 <para><screen><userinput>./configure --prefix=/stage1
    7 make
    8 make check
    9 make install</userinput></screen></para>
     6<para>Prepare Texinfo to be compiled:</para>
    107
     8<para><screen><userinput>./configure --prefix=/stage1</userinput></screen></para>
     9
     10<para>Compile the programs:</para>
     11
     12<para><screen><userinput>make </userinput></screen></para>
     13
     14<para>Check that the programs work correctly:</para>
     15
     16<para><screen><userinput>make check</userinput></screen></para>
     17
     18<para>Then install them and their documentation:</para>
     19
     20<para><screen><userinput>make install</userinput></screen></para>
    1121
    1222</sect2>
Note: See TracChangeset for help on using the changeset viewer.