summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-16 16:15:32 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-16 16:15:32 +0000
commite7acb6028a1186e152df62d199f5ebf1123798f6 (patch)
tree85eebb129a7d3eb0dba4a9a6251db760643b74ac /doc/posix1003.1
parentFix from Chris Johns for inconsistent invocation of make. (diff)
downloadrtems-e7acb6028a1186e152df62d199f5ebf1123798f6.tar.bz2
First time summary chapter is included in the document.
Diffstat (limited to 'doc/posix1003.1')
-rw-r--r--doc/posix1003.1/Makefile1
-rw-r--r--doc/posix1003.1/posix1003_1.texi4
-rwxr-xr-xdoc/posix1003.1/summarize4
3 files changed, 6 insertions, 3 deletions
diff --git a/doc/posix1003.1/Makefile b/doc/posix1003.1/Makefile
index 633ad5e507..a5857ad760 100644
--- a/doc/posix1003.1/Makefile
+++ b/doc/posix1003.1/Makefile
@@ -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) \
diff --git a/doc/posix1003.1/posix1003_1.texi b/doc/posix1003.1/posix1003_1.texi
index f751081cf5..e255c1bb69 100644
--- a/doc/posix1003.1/posix1003_1.texi
+++ b/doc/posix1003.1/posix1003_1.texi
@@ -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.
diff --git a/doc/posix1003.1/summarize b/doc/posix1003.1/summarize
index 397676c97d..989d4bfa2f 100755
--- a/doc/posix1003.1/summarize
+++ b/doc/posix1003.1/summarize
@@ -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}"