diff options
Diffstat (limited to 'chapter06/automake-inst.xml')
-rw-r--r-- | chapter06/automake-inst.xml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/chapter06/automake-inst.xml b/chapter06/automake-inst.xml index b0c8c5ba4..deb241e12 100644 --- a/chapter06/automake-inst.xml +++ b/chapter06/automake-inst.xml @@ -3,21 +3,23 @@ <sect2> <title>Installation of Automake</title> -<para>Prepare Automake to be compiled:</para> +<para>Prepare Automake for compilation:</para> <para><screen><userinput>./configure --prefix=/usr</userinput></screen></para> -<para>Continue with compiling the package:</para> +<para>Compile the package:</para> <para><screen><userinput>make</userinput></screen></para> +<para>Test the results:</para> + <para><screen><userinput>make check</userinput></screen></para> -<para>And finish off installing the package:</para> +<para>Install the package:</para> <para><screen><userinput>make install</userinput></screen></para> -<para>Create a necessary symbolic link:</para> +<para>And create a necessary symbolic link:</para> <para><screen><userinput>ln -s automake-1.7 /usr/share/automake</userinput></screen></para> |