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
This commit is contained in:
Solomon Peachy 2024-07-12 11:54:33 -04:00
parent da8d6152ad
commit 6a6fa0702a

View file

@ -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)/../ )