source: chapter06/automake.xml@ 0868461

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 0868461 was 673b0d8, checked in by Matthew Burgess <matthew@…>, 20 years ago
  • Merged newxml into HEAD

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

  • Property mode set to 100644
File size: 5.3 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">
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<para>The Automake package contains programs for generating Makefiles for use
13with Autoconf.</para>
14
15<screen>&buildtime; 0.2 SBU
16&diskspace; 6.8 MB</screen>
17
18<para>Automake installation depends on: Autoconf, Bash, Coreutils,
19Diffutils, Grep, M4, Make, Perl, Sed.</para>
20
21
22
23<sect2>
24<title>Installation of Automake</title>
25
26<para>Prepare Automake for compilation:</para>
27
28<screen><userinput>./configure --prefix=/usr</userinput></screen>
29
30<para>Compile the package:</para>
31
32<screen><userinput>make</userinput></screen>
33
34<para>To test the results, issue:
35<userinput>make check</userinput>. This takes a long time, about 5 SBUs.</para>
36
37<para>Install the package:</para>
38
39<screen><userinput>make install</userinput></screen>
40
41</sect2>
42
43
44<sect2 id="contents-automake"><title>Contents of Automake</title>
45
46<para><emphasis>Installed programs</emphasis>: acinstall, aclocal,
47aclocal-1.8, automake, automake-1.8, compile, config.guess, config.sub,
48depcomp, elisp-comp, install-sh, mdate-sh, missing, mkinstalldirs, py-compile,
49symlink-tree, ylwrap</para>
50
51</sect2>
52
53<sect2><title>Short descriptions</title>
54
55<indexterm zone="ch-system-automake acinstall"><primary sortas="b-acinstall">acinstall</primary></indexterm>
56<para id="acinstall"><command>acinstall</command> is a script that installs
57aclocal-style M4 files.</para>
58
59<indexterm zone="ch-system-automake aclocal"><primary sortas="b-aclocal">aclocal</primary></indexterm>
60<para id="aclocal"><command>aclocal</command> generates <filename>aclocal.m4</filename>
61files based on the contents of <filename>configure.in</filename> files.</para>
62
63<indexterm zone="ch-system-automake automake"><primary sortas="b-automake">automake</primary></indexterm>
64<para id="automake"><command>automake</command> is a tool for automatically generating
65<filename>Makefile.in</filename>'s from files called
66<filename>Makefile.am</filename>. To create all the
67<filename>Makefile.in</filename> files for a package, run this program in the
68top-level directory. By scanning the <filename>configure.in</filename>s it
69automatically finds each appropriate <filename>Makefile.am</filename> and
70generate the corresponding <filename>Makefile.in</filename>.</para>
71
72<indexterm zone="ch-system-automake compile"><primary sortas="b-compile">compile</primary></indexterm>
73<para id="compile"><command>compile</command> is a wrapper for compilers.</para>
74
75<indexterm zone="ch-system-automake config.guess"><primary sortas="b-config.guess">config.guess</primary></indexterm>
76<para id="config.guess"><command>config.guess</command> is a script that attempts to guess
77the canonical triplet for the given build, host, or target architecture.</para>
78
79<indexterm zone="ch-system-automake config.su"><primary sortas="b-config.su">config.su</primary></indexterm>
80<para id="config.su"><command>config.sub</command> is a configuration validation
81subroutine script.</para>
82
83<indexterm zone="ch-system-automake depcomp"><primary sortas="b-depcomp">depcomp</primary></indexterm>
84<para id="depcomp"><command>depcomp</command> is a script for compiling a program
85so that not only the desired output is generated, but also dependency
86information.</para>
87
88<indexterm zone="ch-system-automake elisp-comp"><primary sortas="b-elisp-comp">elisp-comp</primary></indexterm>
89<para id="elisp-comp"><command>elisp-comp</command> byte-compiles Emacs Lisp code.</para>
90
91<indexterm zone="ch-system-automake install-sh"><primary sortas="b-install-sh">install-sh</primary></indexterm>
92<para id="install-sh"><command>install-sh</command> is a script that installs a program,
93a script, or a datafile.</para>
94
95<indexterm zone="ch-system-automake mdate-sh"><primary sortas="b-mdate-sh">mdate-sh</primary></indexterm>
96<para id="mdate-sh"><command>mdate-sh</command> is a script that prints the modification
97time of a file or directory.</para>
98
99<indexterm zone="ch-system-automake missing"><primary sortas="b-missing">missing</primary></indexterm>
100<para id="missing"><command>missing</command> is a script acting as a common stub for
101missing GNU programs during an installation.</para>
102
103<indexterm zone="ch-system-automake mkinstalldirs"><primary sortas="b-mkinstalldirs">mkinstalldirs</primary></indexterm>
104<para id="mkinstalldirs"><command>mkinstalldirs</command> is a script that creates a directory
105tree.</para>
106
107<indexterm zone="ch-system-automake py-compile"><primary sortas="b-py-compile">py-compile</primary></indexterm>
108<para id="py-compile"><command>py-compile</command> compiles a Python program.</para>
109
110<indexterm zone="ch-system-automake symlink-tree"><primary sortas="b-symlink-tree">symlink-tree</primary></indexterm>
111<para id="symlink-tree"><command>symlink-tree</command> is a script to create a symlink tree of
112a directory tree.</para>
113
114<indexterm zone="ch-system-automake ylwrap"><primary sortas="b-ylwrap">ylwrap</primary></indexterm>
115<para id="ylwrap"><command>ylwrap</command> is a wrapper for lex and yacc.</para>
116
117</sect2>
118
119
120
121</sect1>
Note: See TracBrowser for help on using the repository browser.