[svn:parrot] r48039 - branches/html_cleanup/config/gen/makefiles
coke at svn.parrot.org
coke at svn.parrot.org
Thu Jul 8 00:06:37 UTC 2010
Author: coke
Date: Thu Jul 8 00:06:36 2010
New Revision: 48039
URL: https://trac.parrot.org/parrot/changeset/48039
Log:
remove old html target.
add some html help for recently added targets.
Modified:
branches/html_cleanup/config/gen/makefiles/docs.in
Modified: branches/html_cleanup/config/gen/makefiles/docs.in
==============================================================================
--- branches/html_cleanup/config/gen/makefiles/docs.in Wed Jul 7 21:18:43 2010 (r48038)
+++ branches/html_cleanup/config/gen/makefiles/docs.in Thu Jul 8 00:06:36 2010 (r48039)
@@ -27,11 +27,16 @@
@echo ""
@echo "Following targets are available to the user:"
@echo ""
- @echo " all: Generate documentation from .pod files or from the sources."
- @echo " This is the default target."
- @echo " clean: Remove the generated documentation."
- @echo " html: Generate HTML documentation."
- @echo " html-clean: Remove the generated HTML documentation."
+ @echo "all: Generate documentation from .pod files or from the sources."
+ @echo " This is the default target."
+ @echo ""
+ @echo "htmlhelp: windows only, generate a .chm file."
+ @echo "htmlhelp-clean: Remove generated .chm"
+ @echo ""
+ @echo "pdf: Generate a PDF from the html docs"
+ @echo "pdf-clean: Remove generated pdf"
+ @echo ""
+ @echo " clean: Remove the generated documentation."
@echo ""
$(POD): doc-prep
@@ -47,12 +52,11 @@
clean:
$(RM_F) packfile-c.pod $(POD) doc-prep
-html-old: all
- $(PERL) -I../lib ../tools/docs/write_docs.pl --silent --version=$(VERSION)
-html: all
+html:
$(PERL) -I../lib ../tools/docs/make_html_docs.pl --version=$(VERSION)
+html-clean:
+ $(RM_RF) html
-# The pdf target is to generate a parrot PDF document.
# If you are missing the command 'pdflatex' then you have first to install a
# LaTeX distribution with it. For Windows and UNIX downloads are for example
# available from: http://miktex.org, http://tug.org/texlive or
@@ -68,9 +72,6 @@
pdf-clean:
$(RM_RF) build
-html-clean:
- $(RM_RF) html
-
htmlhelp: html
#IF(win32): cd .. && $(PERL) tools/docs/mk_chm.pl
#IF(win32): -cd html && hhc parrot.hhp
More information about the parrot-commits
mailing list