source: chapter06/m4.xml@ 6a0e6f3

Last change on this file since 6a0e6f3 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: 2.2 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-m4" xreflabel="M4" role="wrap">
8<title>M4-&m4-version;</title>
9<?dbhtml filename="m4.html"?>
10
11<indexterm zone="ch-system-m4"><primary sortas="a-M4">M4</primary></indexterm>
12
13<section role="package"><title/>
14<para>The M4 package contains a macro processor.</para>
15
16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>0.1 SBU</seg><seg>3.0 MB</seg></seglistitem>
20</segmentedlist>
21
22<segmentedlist>
23<segtitle>M4 installation depends on</segtitle>
24<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils, GCC,
25Gettext, Glibc, Grep, Make, Perl, Sed</seg></seglistitem>
26</segmentedlist>
27</section>
28
29<section role="installation">
30<title>Installation of M4</title>
31
32<para>Prepare M4 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>And install the package:</para>
44
45<screen><userinput>make install</userinput></screen>
46
47</section>
48
49
50<section xml:id="contents-m4" role="content"><title>Contents of M4</title>
51
52<segmentedlist>
53<segtitle>Installed program</segtitle>
54<seglistitem><seg>m4</seg></seglistitem>
55</segmentedlist>
56
57<variablelist><title>Short descriptions</title>
58
59<varlistentry xml:id="m4">
60<term><command>m4</command></term>
61<listitem>
62<indexterm zone="ch-system-m4 m4"><primary sortas="b-m4">m4</primary></indexterm>
63<para>copies the given files
64while expanding the macros that they contain. These macros are either built-in
65or user-defined and can take any number of arguments. Besides just doing macro
66expansion, <command>m4</command> has built-in functions for including named files, running Unix
67commands, doing integer arithmetic, manipulating text in various ways,
68recursion, and so on. The <command>m4</command> program can be used either as a front-end to a
69compiler or as a macro processor in its own right.</para>
70</listitem>
71</varlistentry>
72</variablelist>
73
74</section>
75
76</section>
Note: See TracBrowser for help on using the repository browser.