Commit fc5c400a by Geoffrey Keating Committed by Geoffrey Keating

* doc/gty.texi: Small updates.

From-SVN: r54533
parent 13f0d49c
2002-06-11 Geoffrey Keating <geoffk@redhat.com>
* doc/gty.texi: Small updates.
2002-06-12 Gabriel Dos Reis <gdr@codesourcery.com> 2002-06-12 Gabriel Dos Reis <gdr@codesourcery.com>
* objc/objc-act.c (warn_with_ivar): Adjust calls to * objc/objc-act.c (warn_with_ivar): Adjust calls to
......
...@@ -229,11 +229,12 @@ things you need to do: ...@@ -229,11 +229,12 @@ things you need to do:
@enumerate @enumerate
@item @item
You need to add the file to the list of source files the type machinery You need to add the file to the list of source files the type machinery
scans. For a back-end file, this is done automatically. For a scans. For a back-end file, this is usually done automatically; if not,
front-end file, this is done by adding the filename to the you should add it to @code{config_gtfiles} in the appropriate port's
@code{gtfiles} variable defined in @file{config-lang.in}. For other entries in @file{config.gcc}. For a front-end file, this is done by
files, this is done by adding the filename to the @code{GTFILES} variable adding the filename to the @code{gtfiles} variable defined in
in @file{Makefile.in}. @file{config-lang.in}. For other files, this is done by adding the
filename to the @code{GTFILES} variable in @file{Makefile.in}.
@item @item
You need to include the file that the type machinery will generate in You need to include the file that the type machinery will generate in
...@@ -243,9 +244,9 @@ the source file you just changed. The file will be called ...@@ -243,9 +244,9 @@ the source file you just changed. The file will be called
to mention this file as a dependency in the @file{Makefile}! to mention this file as a dependency in the @file{Makefile}!
@item @item
Finally, you need to add a @file{Makefile} rule that will ensure this file Finally, you need to arrange to add a @file{Makefile} rule that will
can be built. This is done by making it a dependency of @code{s-gtype}, ensure this file can be built. This is done by making it a dependency
like this: of @code{s-gtype}, like this:
@verbatim @verbatim
gt-path.h : s-gtype ; @true gt-path.h : s-gtype ; @true
@end verbatim @end verbatim
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment