1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-07 00:58:40 +03:00

'make html` is ugly but it works....

(This used to be commit 416789f0b6180aefcae5f8421104252db4530b19)
This commit is contained in:
Gerald Carter 2001-02-23 22:38:23 +00:00
parent 8793c409da
commit 4633fcfcc1

View File

@ -20,6 +20,7 @@ SGMLSPL=@SGMLSPL@
SGML_SHARE=/usr/local/share/sgml
HTML_STYLESHEET = $(srcdir)/stylesheets/html.dsl
HTML_DEPS = $(srcdir)/stylesheets/html-common.dsl $(srcdir)/stylesheets/common.dsl
SGML_SHARE=/usr/local/share/sgml
MANPAGES=findsmb.1 smbclient.1 \
smbspool.8 lmhosts.5 \
@ -36,7 +37,7 @@ MANPAGES=findsmb.1 smbclient.1 \
######################################################################
# Make instructions
######################################################################
all: man
all: man html
man:
@echo Building man pages...
@ -45,10 +46,23 @@ man:
echo "Making $$manfile"; \
$(ONSGMLS) -f /tmp/docbook2x.log $$file | $(SGMLSPL) \
$(SGML_SHARE)/docbook2X/docbook2man-spec.pl; \
cat /tmp/docbook2x.log | grep -v DTDDECL; \
/bin/rm -f /tmp/docbook2x.log; \
cat /tmp/docbook2x.log | grep -v DTDDECL; \
/bin/rm -f /tmp/docbook2x.log; \
/bin/mv -f $$manfile ../manpages/$$manfile; \
done
html:
@echo Building HTML formatted man pages...
@for file in `/bin/ls manpages/*sgml`; do \
htmlfile=`basename $$file | sed "s/\.sgml/\.html/g"`; \
echo "Making $$htmlfile"; \
$(JADE) -t sgml -V nochunks -d $(SGML_SHARE)/dsssl/docbook/html/docbook.dsl \
-f /tmp/jade.log $$file > ../htmldocs/$$htmlfile; \
cat /tmp/jade.log | grep -v DTDDECL; \
/bin/rm -f /tmp/jade.log; \
done
##
## these rules are for building individual files
##