doc: Add section 3 man pages to AdminRef

The section 3 man pages are missing in the AdminRef document, so add
section 3 to the Makefile and perl script which generates the AdminRef
doc.

Currently, the only man page in section 3 is the AFS::ukernel, so only
one page is missing.

Change-Id: I3c7401f2eeafa505b9de4545b9d9c4b5cfd617e2
Reviewed-on: https://gerrit.openafs.org/15828
Reviewed-by: Cheyenne Wills <cwills@sinenomine.net>
Reviewed-by: Michael Meffie <mmeffie@sinenomine.net>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
This commit is contained in:
Michael Meffie 2024-08-08 13:57:05 -04:00
parent 0182dbd13b
commit 7dc8a7ddc2
3 changed files with 11 additions and 5 deletions

View File

@ -9,14 +9,14 @@ VERSION=version
include @TOP_OBJDIR@/src/config/Makefile.version
SRCS = $(BOOK).xml preface.xml $(VERSION).xml \
entities.dtd sect1.xml sect5.xml sect8.xml
entities.dtd sect1.xml sect3.xml sect5.xml sect8.xml
DOCBOOK_STYLESHEETS = @DOCBOOK_STYLESHEETS@
XSLTPROC = @XSLTPROC@ --stringparam variablelist.as.blocks 1 --param use.id.as.filename 1
DOCBOOK2PDF = @DOCBOOK2PDF@
DBTOEPUB = $(DOCBOOK_STYLESHEETS)/epub/bin/dbtoepub
KINDLEGEN = @KINDLEGEN@
entities.dtd sect1.xml sect5.xml sect8.xml:
entities.dtd sect1.xml sect3.xml sect5.xml sect8.xml:
./generate-xml.pl $(TOP_SRCDIR)
$(BOOK).pdf: $(SRCS)
@ -42,5 +42,5 @@ check:
clean:
rm -f $(BOOK).pdf $(BOOK).mobi $(BOOK).epub $(BOOK).fo \
entities.dtd sect1.xml sect5.xml sect8.xml $(VERSION).xml
rm -rf sect1 sect5 sect8
entities.dtd sect1.xml sect3.xml sect5.xml sect8.xml $(VERSION).xml
rm -rf sect1 sect3 sect5 sect8

View File

@ -4,6 +4,7 @@
<!ENTITY version SYSTEM "version.xml">
<!ENTITY preface SYSTEM "preface.xml">
<!ENTITY sect1 SYSTEM "sect1.xml">
<!ENTITY sect3 SYSTEM "sect3.xml">
<!ENTITY sect5 SYSTEM "sect5.xml">
<!ENTITY sect8 SYSTEM "sect8.xml">
<!ENTITY % entities SYSTEM "entities.dtd">
@ -61,6 +62,11 @@
&sect1;
</reference>
<reference>
<title>AFS Library Reference</title>
&sect3;
</reference>
<reference>
<title>AFS System Files</title>
&sect5;

View File

@ -2,7 +2,7 @@
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
if $running_under_some_shell;
@sections = ('1', '5', '8');
@sections = ('1', '3', '5', '8');
$TOP_SRCDIR = shift @ARGV;
$doc_man_pages = sprintf "%s/../doc/man-pages", $TOP_SRCDIR;