source: chapter06/automake.xml@ 01b2724c

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 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
Last change on this file since 01b2724c was a001133, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

HEAD: Retaged the introductori packages sections in chapter0{6,7,8}

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

  • Property mode set to 100644
File size: 5.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-automake" xreflabel="Automake" role="wrap">
7<title>Automake-&automake-version;</title>
8<?dbhtml filename="automake.html"?>
9
10<indexterm zone="ch-system-automake"><primary sortas="a-Automake">Automake</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The Automake package contains programs for generating Makefiles for use
14with Autoconf.</para>
15
16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>0.2 SBU</seg><seg>6.8 MB</seg></seglistitem>
20</segmentedlist>
21
22<segmentedlist>
23<segtitle>Automake installation depends on</segtitle>
24<seglistitem><seg>Autoconf, Bash, Coreutils,
25Diffutils, Grep, M4, Make, Perl, Sed</seg></seglistitem>
26</segmentedlist>
27</sect2>
28
29<sect2 role="installation">
30<title>Installation of Automake</title>
31
32<para>Prepare Automake 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>. This takes a long time, about 5 SBUs.</para>
42
43<para>Install the package:</para>
44
45<screen><userinput>make install</userinput></screen>
46
47</sect2>
48
49
50<sect2 id="contents-automake"><title>Contents of Automake</title>
51
52<para><emphasis>Installed programs</emphasis>: acinstall, aclocal,
53aclocal-1.8, automake, automake-1.8, compile, config.guess, config.sub,
54depcomp, elisp-comp, install-sh, mdate-sh, missing, mkinstalldirs, py-compile,
55symlink-tree, ylwrap</para>
56
57</sect2>
58
59<sect2><title>Short descriptions</title>
60
61<indexterm zone="ch-system-automake acinstall"><primary sortas="b-acinstall">acinstall</primary></indexterm>
62<para id="acinstall"><command>acinstall</command> is a script that installs
63aclocal-style M4 files.</para>
64
65<indexterm zone="ch-system-automake aclocal"><primary sortas="b-aclocal">aclocal</primary></indexterm>
66<para id="aclocal"><command>aclocal</command> generates <filename>aclocal.m4</filename>
67files based on the contents of <filename>configure.in</filename> files.</para>
68
69<indexterm zone="ch-system-automake automake"><primary sortas="b-automake">automake</primary></indexterm>
70<para id="automake"><command>automake</command> is a tool for automatically generating
71<filename>Makefile.in</filename>'s from files called
72<filename>Makefile.am</filename>. To create all the
73<filename>Makefile.in</filename> files for a package, run this program in the
74top-level directory. By scanning the <filename>configure.in</filename>s it
75automatically finds each appropriate <filename>Makefile.am</filename> and
76generate the corresponding <filename>Makefile.in</filename>.</para>
77
78<indexterm zone="ch-system-automake compile"><primary sortas="b-compile">compile</primary></indexterm>
79<para id="compile"><command>compile</command> is a wrapper for compilers.</para>
80
81<indexterm zone="ch-system-automake config.guess"><primary sortas="b-config.guess">config.guess</primary></indexterm>
82<para id="config.guess"><command>config.guess</command> is a script that attempts to guess
83the canonical triplet for the given build, host, or target architecture.</para>
84
85<indexterm zone="ch-system-automake config.su"><primary sortas="b-config.su">config.su</primary></indexterm>
86<para id="config.su"><command>config.sub</command> is a configuration validation
87subroutine script.</para>
88
89<indexterm zone="ch-system-automake depcomp"><primary sortas="b-depcomp">depcomp</primary></indexterm>
90<para id="depcomp"><command>depcomp</command> is a script for compiling a program
91so that not only the desired output is generated, but also dependency
92information.</para>
93
94<indexterm zone="ch-system-automake elisp-comp"><primary sortas="b-elisp-comp">elisp-comp</primary></indexterm>
95<para id="elisp-comp"><command>elisp-comp</command> byte-compiles Emacs Lisp code.</para>
96
97<indexterm zone="ch-system-automake install-sh"><primary sortas="b-install-sh">install-sh</primary></indexterm>
98<para id="install-sh"><command>install-sh</command> is a script that installs a program,
99a script, or a datafile.</para>
100
101<indexterm zone="ch-system-automake mdate-sh"><primary sortas="b-mdate-sh">mdate-sh</primary></indexterm>
102<para id="mdate-sh"><command>mdate-sh</command> is a script that prints the modification
103time of a file or directory.</para>
104
105<indexterm zone="ch-system-automake missing"><primary sortas="b-missing">missing</primary></indexterm>
106<para id="missing"><command>missing</command> is a script acting as a common stub for
107missing GNU programs during an installation.</para>
108
109<indexterm zone="ch-system-automake mkinstalldirs"><primary sortas="b-mkinstalldirs">mkinstalldirs</primary></indexterm>
110<para id="mkinstalldirs"><command>mkinstalldirs</command> is a script that creates a directory
111tree.</para>
112
113<indexterm zone="ch-system-automake py-compile"><primary sortas="b-py-compile">py-compile</primary></indexterm>
114<para id="py-compile"><command>py-compile</command> compiles a Python program.</para>
115
116<indexterm zone="ch-system-automake symlink-tree"><primary sortas="b-symlink-tree">symlink-tree</primary></indexterm>
117<para id="symlink-tree"><command>symlink-tree</command> is a script to create a symlink tree of
118a directory tree.</para>
119
120<indexterm zone="ch-system-automake ylwrap"><primary sortas="b-ylwrap">ylwrap</primary></indexterm>
121<para id="ylwrap"><command>ylwrap</command> is a wrapper for lex and yacc.</para>
122
123</sect2>
124
125
126
127</sect1>
Note: See TracBrowser for help on using the repository browser.