diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-07-12 11:54:33 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-07-12 11:57:14 -0400 |
commit | 6a6fa0702a3ea736dc0c1820f308697d7b6bb453 (patch) | |
tree | b1b19f2f4bd0b2dba19e9aae4b5c8beba5078c7c | |
parent | da8d6152add8d60957995851c638a2c56e164667 (diff) | |
download | rockbox-6a6fa0702a.tar.gz rockbox-6a6fa0702a.zip |
manual: Just call the PDF build artifact rockbox-manual.pdf
...Instead of renaming it to include the player name and version. This
was the _only_ build artifact treated that way, and I can't find an
explanation of why.
Change-Id: I13f1a43ddc1f2ac3183f57892cf068e8ed16f37d
-rw-r--r-- | manual/Makefile.pdflatex | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/manual/Makefile.pdflatex b/manual/Makefile.pdflatex index 66b0f33c2e..cf161a01c7 100644 --- a/manual/Makefile.pdflatex +++ b/manual/Makefile.pdflatex @@ -6,13 +6,12 @@ HTLATEX := max_print_line=10000 htlatex HTOPTS1 := rockbox-html,charset=utf-8,early_ HTOPTS2 := " -utf8 -cmozhtf" HTOPTS3 := "-dhtml/ -cvalidate" -VERSION ?= $(shell $(TOOLSDIR)/version.sh $(ROOTDIR)) SPLITHTML ?= 2 .PHONY: all cleaner buildmanual output buildmanual: rockbox-build.tex pdf - @cp $(OBJDIR)/rockbox-build.pdf $(OBJDIR)/../rockbox-$(MODELNAME)-$(VERSION).pdf + @cp $(OBJDIR)/rockbox-build.pdf $(OBJDIR)/../rockbox-manual.pdf buildhtml: rockbox-build.tex @mkdir -p $(OBJDIR)/html @@ -28,7 +27,7 @@ buildtxt: buildhtml done) @cp -r $(OBJDIR)/txt $(OBJDIR)/../ -htmlzip: buildhtml +htmlzip: buildhtml @(cd $(OBJDIR); \ zip -r $(OBJDIR)/rockbox-manual.zip html; \ cp $(OBJDIR)/rockbox-manual.zip $(OBJDIR)/../ ) @@ -37,4 +36,3 @@ txtzip: buildtxt @(cd $(OBJDIR); \ zip -r $(OBJDIR)/rockbox-manual-txt.zip txt; \ cp $(OBJDIR)/rockbox-manual-txt.zip $(OBJDIR)/../ ) - |