First time summary chapter is included in the document.

This commit is contained in:
Joel Sherrill
1998-03-16 16:15:32 +00:00
parent d2865dceeb
commit e7acb6028a
3 changed files with 6 additions and 3 deletions

View File

@@ -151,7 +151,6 @@ ch19.texi: ch19.t
-u "Top" \
-n "Command and Variable Index" ${*}.t
html: $(FILES)
-mkdir $(WWW_INSTALL)/$(PROJECT)
$(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \

View File

@@ -81,6 +81,7 @@ END-INFO-DIR-ENTRY
@include ch16.texi
@include ch17.texi
@include ch18.texi
@include ch19.texi
@ifinfo
@node Top, Preface, (dir), (dir)
@@ -108,6 +109,7 @@ This is the online version of the RTEMS POSIX 1003.1 Compliance Guide.
* Thread Management::
* Thread-Specific Data::
* Thread Cancellation::
* Compliance Summary::
* Command and Variable Index::
* Concept Index::
@end menu
@@ -118,7 +120,7 @@ This is the online version of the RTEMS POSIX 1003.1 Compliance Guide.
@c Need to copy the emacs stuff and "trailer stuff" (index, toc) into here
@c
@node Command and Variable Index, Concept Index, List of Cancellation Points, Top
@node Command and Variable Index, Concept Index, Thread Cancellation Chapter, Top
@unnumbered Command and Variable Index
There are currently no Command and Variable Index entries.

View File

@@ -14,7 +14,9 @@ echo
summarize_chapter()
{
grep "^@chapter" $1 | sed -e "s/^.chapter/@section/"
grep "^@chapter" $1 | \
sed -e "s/^.chapter/@section/" \
-e "s/$/ Chapter/"
echo
num_functions=`grep "()" $1 | wc -l`
echo "Functions: ${num_functions}"