diff options
-rw-r--r-- | manual/Makefile | 16 | ||||
-rw-r--r-- | manual/Makefile.pdflatex | 13 | ||||
-rwxr-xr-x | tools/configure | 37 |
3 files changed, 48 insertions, 18 deletions
diff --git a/manual/Makefile b/manual/Makefile index f71be56480..ac7fd628b3 100644 --- a/manual/Makefile +++ b/manual/Makefile @@ -1,9 +1,9 @@ .PHONY: all buildmanual clean -all: rockbox-build.tex +all: manual-pdf -rockbox-build.tex: rockbox.tex - @if [ "$(OBJDIR)" = "" ]; then echo Run make in you build diriectory!; false; fi +manual-prep: rockbox.tex + @if [ "$(OBJDIR)" = "" ]; then echo Run make in you build directory!; false; fi @mkdir -p $(OBJDIR) @cp -R * $(OBJDIR) @perl credits.pl < ../docs/CREDITS | iconv -f utf-8 -t iso-8859-1 > $(OBJDIR)/CREDITS.tex @@ -11,8 +11,16 @@ rockbox-build.tex: rockbox.tex @echo "\newcommand{\buildversion}{$(VERSION)}" >> $(OBJDIR)/rockbox-build.tex @echo "\input{rockbox.tex}" >> $(OBJDIR)/rockbox-build.tex @mv $(OBJDIR)/Makefile.pdflatex $(OBJDIR)/Makefile + +manual-pdf: manual-prep rockbox.tex $(MAKE) -C $(OBJDIR) +manual-html: manual-prep rockbox.tex + $(MAKE) -C $(OBJDIR) buildhtml + +manual-zip: manual-html + $(MAKE) -C $(OBJDIR) htmlzip + clean: - @if [ "$(OBJDIR)" == "" ]; then echo Run make in you build diriectory!; false; fi + @if [ "$(OBJDIR)" == "" ]; then echo Run make in you build directory!; false; fi @rm -rf $(OBJDIR)/manual $(OBJDIR)/*.pdf diff --git a/manual/Makefile.pdflatex b/manual/Makefile.pdflatex index 43ba4a65a7..edeac8abb3 100644 --- a/manual/Makefile.pdflatex +++ b/manual/Makefile.pdflatex @@ -2,9 +2,22 @@ DOCUMENT := rockbox-build LATEX := pdflatex include LaTeX.Rules GRAPHIC_FILES:=`find . -name \*.jpg \*.jpeg` +HTLATEX := htlatex +HTOPTS1 := "html,early_,2" +HTOPTS2 := "" +HTOPTS3 := "-dhtml/" .PHONY: all cleaner buildmanual output buildmanual: rockbox-build.tex @cp $(OBJDIR)/rockbox-build.pdf $(OBJDIR)/../rockbox-$(ARCHOS)-$(VERSION).pdf +buildhtml: rockbox-build.tex + @mkdir -p $(OBJDIR)/html + @$(HTLATEX) $(DOCUMENT) $(HTOPTS1) $(HTOPTS2) $(HTOPTS3) + @cp --parent `cat $(OBJDIR)/html/*.html | sed -e '/png/!d;s/.*\"\(.*\.png\)\".*/\1/g'` $(OBJDIR)/html + @cp -r $(OBJDIR)/html $(OBJDIR)/../ + +htmlzip: buildhtml + @zip -r $(OBJDIR)/rockbox-manual.zip $(OBJDIR)/html + @cp $(OBJDIR)/rockbox-manual.zip $(OBJDIR)/../ diff --git a/tools/configure b/tools/configure index 1b8e677a01..318a1c8dd0 100755 --- a/tools/configure +++ b/tools/configure @@ -1296,24 +1296,33 @@ bzip2: tar gzip: tar \$(SILENT)gzip -f9 rockbox.tar -manual: - \$(SILENT)\$(MAKE) -C \$(MANUALDIR) OBJDIR=\$(BUILDDIR)/manual buildmanual +manual: manual-pdf +manual-pdf: + \$(SILENT)\$(MAKE) -C \$(MANUALDIR) OBJDIR=\$(BUILDDIR)/manual manual-pdf + +manual-html: + \$(SILENT)\$(MAKE) -C \$(MANUALDIR) OBJDIR=\$(BUILDDIR)/manual manual-html + +manual-zip: + \$(SILENT)\$(MAKE) -C \$(MANUALDIR) OBJDIR=\$(BUILDDIR)/manual manual-zip help: @echo "A few helpful make targets" @echo "" - @echo "all - builds a full Rockbox (default), including tools" - @echo "clean - cleans a build directory (not tools)" - @echo "veryclean - cleans the build and tools directories" - @echo "manual - builds a manual" - @echo "fullzip - creates a rockbox.zip of your build with fonts" - @echo "zip - creates a rockbox.zip of your build (no fonts)" - @echo "gzip - creates a rockbox.tar.gz of your build (no fonts)" - @echo "bzip2 - creates a rockbox.tar.bz2 of your build (no fonts)" - @echo "7zip - creates a rockbox.7z of your build (no fonts)" - @echo "fontzip - creates rockbox-fonts.zip" - @echo "tools - builds the tools only" - @echo "install - installs your build (for simulator builds only)" + @echo "all - builds a full Rockbox (default), including tools" + @echo "clean - cleans a build directory (not tools)" + @echo "veryclean - cleans the build and tools directories" + @echo "manual - builds a manual" + @echo "manual-html - HTML manual" + @echo "manual-zip - HTML manual (zipped)" + @echo "fullzip - creates a rockbox.zip of your build with fonts" + @echo "zip - creates a rockbox.zip of your build (no fonts)" + @echo "gzip - creates a rockbox.tar.gz of your build (no fonts)" + @echo "bzip2 - creates a rockbox.tar.bz2 of your build (no fonts)" + @echo "7zip - creates a rockbox.7z of your build (no fonts)" + @echo "fontzip - creates rockbox-fonts.zip" + @echo "tools - builds the tools only" + @echo "install - installs your build (for simulator builds only)" EOF |