forked from len0rd/rockbox
Add new make targets to build the manual as html.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10265 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1c3dff7c83
commit
9413c2a4ef
3 changed files with 48 additions and 18 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)/../
|
||||
|
|
|
|||
37
tools/configure
vendored
37
tools/configure
vendored
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue