Build the HTML documents as one big file.

This commit is contained in:
Dimitrie O. Paun 2003-09-19 00:10:02 +00:00 committed by Alexandre Julliard
parent 40b09a23e5
commit 6f7cbc0840
2 changed files with 32 additions and 27 deletions

View file

@ -1,16 +1,23 @@
*.aux *.aux
*.dvi *.dvi
*.html
*.junk *.junk
*.log *.log
*.out *.out
*.pdf
*.ps
*.tex *.tex
DBTOHTML_OUTPUT_DIR* DBTOHTML_OUTPUT_DIR*
Makefile Makefile
wine-devel wine-devel.html
wine-devel.pdf
wine-devel.ps
wine-devel.txt
wine-faq.html
wine-faq.txt wine-faq.txt
wine-user wine-user.html
wine-user.pdf
wine-user.ps
wine-user.txt
wine.man wine.man
winelib-user winelib-user.html
winelib-user.pdf
winelib-user.ps
winelib-user.txt

View file

@ -65,32 +65,30 @@ all: $(MAN_TARGETS)
everything: $(MAN_TARGETS) doc everything: $(MAN_TARGETS) doc
doc: html pdf ps doc: html pdf ps
html: $(ALLBOOKS:%=%/index.html) wine-faq.html html: $(ALLBOOKS:%=%.html) wine-faq.html
pdf: $(ALLBOOKS:%=%.pdf) pdf: $(ALLBOOKS:%=%.pdf)
ps: $(ALLBOOKS:%=%.ps) ps: $(ALLBOOKS:%=%.ps)
.PHONY: everything doc html pdf ps dist .PHONY: everything doc html pdf ps dist
.SUFFIXES: .sgml /index.html .pdf .ps .SUFFIXES: .sgml .html .pdf .ps .txt
.sgml/index.html: .sgml.html:
$(DB2HTML) -d $(SRCDIR)/default.dsl -o $* $< $(DB2HTML) -u -d $(SRCDIR)/default.dsl $<
.sgml.pdf: .sgml.pdf:
$(DB2PDF) $< >/dev/null $(DB2PDF) $<
.sgml.ps: .sgml.ps:
$(DB2PS) $< >/dev/null $(DB2PS) $<
wine-devel.pdf wine-devel.ps wine-devel/index.html: $(WINE_DEVEL_SRCS) .html.txt:
wine-user.pdf wine-user.ps wine-user/index.html: $(WINE_USER_SRCS) w3m -dump $< > $@ || ($(RM) $@ && false)
winelib-user.pdf winelib-user.ps winelib-user/index.html: $(WINELIB_USER_SRCS)
wine-faq.html: wine-faq.sgml $(WINE_FAQ_SRCS) wine-devel.pdf wine-devel.ps wine-devel.html: $(WINE_DEVEL_SRCS)
$(DB2HTML) -u -d $(SRCDIR)/default.dsl $(SRCDIR)/wine-faq.sgml wine-user.pdf wine-user.ps wine-user.html: $(WINE_USER_SRCS)
wine-faq.pdf wine-faq.ps wine-faq.html: $(WINE_FAQ_SRCS)
wine-faq.txt: wine-faq.html winelib-user.pdf winelib-user.ps winelib-user.html: $(WINELIB_USER_SRCS)
w3m -dump wine-faq.html > $@ || ($(RM) $@ && false)
wine.man: wine.man.in wine.man: wine.man.in
sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g' $(SRCDIR)/wine.man.in >$@ || ($(RM) $@ && false) sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g' $(SRCDIR)/wine.man.in >$@ || ($(RM) $@ && false)
@ -105,12 +103,11 @@ wine-doc-ps.tar.gz: $(ALLBOOKS:%=%.ps)
wine-doc-pdf.tar.gz: $(ALLBOOKS:%=%.pdf) wine-doc-pdf.tar.gz: $(ALLBOOKS:%=%.pdf)
tar cf - $(ALLBOOKS:%=%.pdf) | gzip -9 > $@ || ($(RM) $@ && false) tar cf - $(ALLBOOKS:%=%.pdf) | gzip -9 > $@ || ($(RM) $@ && false)
wine-doc-html.tar.gz: $(ALLBOOKS:%=%/index.html) wine-doc-html.tar.gz: $(ALLBOOKS:%=%.html)
tar cf - $(ALLBOOKS:%=%/*.html) | gzip -9 > $@ || ($(RM) $@ && false) tar cf - $(ALLBOOKS:%=%.html) | gzip -9 > $@ || ($(RM) $@ && false)
wine-doc-txt.tar.gz: $(ALLBOOKS:%=%/index.html) wine-doc-txt.tar.gz: $(ALLBOOKS:%=%.txt)
for i in $(ALLBOOKS:%=%/*.html); do w3m -dump $$i > `dirname $$i`/`basename $$i .html`.txt || exit 1; done tar cf - $(ALLBOOKS:%=%.txt) | gzip -9 > $@ || ($(RM) $@ && false)
tar cf - $(ALLBOOKS:%=%/*.txt) | gzip -9 > $@ || ($(RM) $@ && false)
install:: $(MAN_TARGETS) install:: $(MAN_TARGETS)
$(MKINSTALLDIRS) $(mandir)/man$(prog_manext) $(mandir)/man$(conf_manext) $(mandir)/man$(api_manext) $(MKINSTALLDIRS) $(mandir)/man$(prog_manext) $(mandir)/man$(conf_manext) $(mandir)/man$(api_manext)
@ -125,7 +122,8 @@ install-api-man::
for i in $(SRCDIR)/man$(api_manext)/*; do $(INSTALL_DATA) $$i $(mandir)/man$(api_manext); done for i in $(SRCDIR)/man$(api_manext)/*; do $(INSTALL_DATA) $$i $(mandir)/man$(api_manext); done
clean:: clean::
$(RM) *.aux *.dvi *.out *.pdf *.ps *.tex *.log *.html wine-doc-*.tar.gz wine-faq.txt $(MAN_TARGETS) $(RM) *.aux *.dvi *.out *.tex *.log wine-doc-*.tar.gz wine-faq.html wine-faq.txt $(MAN_TARGETS)
$(RM) -r $(ALLBOOKS) html api-guide man$(api_manext) *.junk DBTOHTML_OUTPUT_DIR* $(RM) $(ALLBOOKS:%=%.ps) $(ALLBOOKS:%=%.pdf) $(ALLBOOKS:%=%.html) $(ALLBOOKS:%=%.txt)
$(RM) -r html api-guide man$(api_manext) *.junk DBTOHTML_OUTPUT_DIR*
### Dependencies: ### Dependencies: