summaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorMartin Roth <gaumless@gmail.com>2023-05-29 23:09:54 -0600
committerFelix Singer <service+coreboot-gerrit@felixsinger.de>2023-06-03 20:58:51 +0000
commit4d8da8ed77dd14edad7cdaed87292f7f4158c1e6 (patch)
treed64746f855cd61b0698200b0e28ce47326f62b49 /Documentation
parent34e43f602fb7570ce5adea4f0935c608614244f1 (diff)
downloadcoreboot-4d8da8ed77dd14edad7cdaed87292f7f4158c1e6.tar.gz
coreboot-4d8da8ed77dd14edad7cdaed87292f7f4158c1e6.tar.bz2
coreboot-4d8da8ed77dd14edad7cdaed87292f7f4158c1e6.zip
Docs: Update sphinx targets with the build directory
Because Makefile.sphinx looks like a standard makefile from the sphinx project, it probably shouldn't be updated without good reason. This change lets us update the output directory and tell the Makefile.sphinx where we want the output. Also fix the spacing on PDFLATEX to match the new SPHINXDIR variable. Signed-off-by: Martin Roth <gaumless@gmail.com> Change-Id: Iab111e8feea8ec02260f39636e7c17fd1cae7c30 Reviewed-on: https://review.coreboot.org/c/coreboot/+/75499 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/Makefile16
1 files changed, 10 insertions, 6 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile
index 17aec29450ae..19b1f80b0a81 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -4,7 +4,8 @@
# hacked together by Stefan Reinauer <stepan@openbios.org>
#
-PDFLATEX=pdflatex -t a4
+PDFLATEX = pdflatex -t a4
+SPHINXDIR = _build
FIGS=codeflow.pdf hypertransport.pdf
@@ -32,6 +33,9 @@ else ifneq ($(strip $(CONVERT)),)
convert $< $@
endif
+$(SPHINXDIR):
+ mkdir -p $(SPHINXDIR)
+
corebootPortingGuide.toc: $(FIGS) corebootBuildingGuide.tex
# 2 times to make sure we have a current toc.
$(PDFLATEX) corebootBuildingGuide.tex
@@ -40,11 +44,11 @@ corebootPortingGuide.toc: $(FIGS) corebootBuildingGuide.tex
corebootPortingGuide.pdf: $(FIGS) corebootBuildingGuide.tex corebootPortingGuide.toc
$(PDFLATEX) corebootBuildingGuide.tex
-sphinx:
- $(MAKE) -f Makefile.sphinx html
+sphinx: $(SPHINXDIR)
+ $(MAKE) -f Makefile.sphinx html BUILDDIR="$(SPHINXDIR)""
clean-sphinx:
- $(MAKE) -f Makefile.sphinx clean
+ $(MAKE) -f Makefile.sphinx clean BUILDDIR="$(SPHINXDIR)"
clean: clean-sphinx
rm -f *.aux *.idx *.log *.toc *.out $(FIGS)
@@ -52,8 +56,8 @@ clean: clean-sphinx
distclean: clean
rm -f corebootPortingGuide.pdf
-livesphinx:
- $(MAKE) -f Makefile.sphinx livehtml SPHINXOPTS="$(SPHINXOPTS)"
+livesphinx: $(SPHINXDIR)
+ $(MAKE) -f Makefile.sphinx livehtml SPHINXOPTS="$(SPHINXOPTS)" BUILDDIR="$(SPHINXDIR)"
test:
@echo "Test for logging purposes - Failing tests will not fail the build"