diff options
author | kcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-06 01:14:32 +0000 |
---|---|---|
committer | kcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-06 01:14:32 +0000 |
commit | b510ee9c85f1302144ca62f33c066f08185f473c (patch) | |
tree | 0b801a095b5fb310239b09469dbfe374641e7e8d /gcc/doc/makefile.texi | |
parent | 6bc11008824b06fe4098cb7a0f76c51395079c7f (diff) | |
download | gcc-b510ee9c85f1302144ca62f33c066f08185f473c.tar.gz |
2004-02-05 Kelley Cook <kcook@gcc.gnu.org>
* doc/install.texi: Update automake and autoconf version
requirements. Note where to find gcj automake version.
2004-02-05 Kelley Cook <kcook@gcc.gnu.org>
* Makefile.in (generate-manpages): Move dependencies to ...
(man): here.
* doc/makefile.texi: Document new targets.
* doc/sourcebuild.texi (Make-lang.in): Document new langhooks.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77365 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/makefile.texi')
-rw-r--r-- | gcc/doc/makefile.texi | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/gcc/doc/makefile.texi b/gcc/doc/makefile.texi index 1995e5824a3..d39baa5f1ae 100644 --- a/gcc/doc/makefile.texi +++ b/gcc/doc/makefile.texi @@ -13,9 +13,17 @@ This is the default target. Depending on what your build/host/target configuration is, it coordinates all the things that need to be built. @item doc -Produce info-formatted documentation. Also, @samp{make dvi} is -available for DVI-formatted documentation, and @samp{make -generated-manpages} to generate man pages. +Produce info-formatted documentation and man pages. Essentially it +calls @samp{make man} and @samp{make info}. + +@item dvi +Produce DVI-formatted documentation. + +@item man +Generate man pages. + +@item info +Generate info-formatted pages. @item mostlyclean Delete the files made while building the compiler. @@ -31,6 +39,16 @@ Distclean plus any file that can be generated from other files. Note that additional tools may be required beyond what is normally needed to build gcc. +@item srcextra +Generates files in the source directory that do not exist in CVS but +should go into a release tarball. One example is @file{gcc/c-parse.c} +which is generated from the CVS source file @file{gcc/c-parse.in}. + +@item srcinfo +@itemx srcman +Copies the info-formatted and manpage documentation into the source +directory usually for the purpose of generating a release tarball. + @item install Installs gcc. |