aboutsummaryrefslogtreecommitdiff
path: root/reproduce/src/make/paper.mk
blob: aec29c770b843e4c0edddc52673949c9d5e1388e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Build the final PDF paper/report.
#
# Original author:
#     Mohammad Akhlaghi <mohammad@akhlaghi.org>
# Contributing author(s):
#     Your name <your@email.address>
# Copyright (C) 2018, Your Name.
#
# This Makefile is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# This Makefile is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
# Public License for more details.
#
# A copy of the GNU General Public License is available at
# <http://www.gnu.org/licenses/>.





# The bibliography
# ----------------
#
# We need to run the `biber' program on the output of LaTeX to generate the
# necessary bibliography before making the final paper. So we'll first have
# one run of LaTeX (similar to the `paper.pdf' recipe), then `biber'.
#
# NOTE: `tex/pipeline.tex' is an order-only-prerequisite for
# `paper.bbl'. This is because we need to run LaTeX in both the `paper.bbl'
# recipe and the `paper.pdf' recipe. But if `tex/references.tex' hasn't
# been modified, we don't want to re-build the bibliography, only the final
# PDF.
$(texbdir)/paper.bbl: tex/references.tex                         \
                      | $(tikzdir) $(texbdir) tex/pipeline.tex

        # To find LaTeX (which currently isn't internally installed).
	#PATH=$(sys-path)

        # We'll run LaTeX first to generate the `.bcf' file (necessary for
        # `biber') and then run `biber' to generate the `.bbl' file.
	p=$$(pwd);
	export TEXINPUTS=$$p:$$TEXINPUTS;
	cd $(texbdir);
	pdflatex -shell-escape -halt-on-error $$p/paper.tex;
	biber paper





# The final paper
# ---------------
#
# Run LaTeX in the `$(texbdir)' directory so all the intermediate and
# auxiliary files stay there and keep the top directory clean. To be able
# to run everything cleanly from there, it is necessary to add the current
# directory (top reproduction pipeline directory) to the `TEXINPUTS'
# environment variable.
paper.pdf: tex/pipeline.tex paper.tex $(texbdir)/paper.bbl       \
	   | $(tikzdir) $(texbdir)

        # To find LaTeX (which currently isn't internally installed).
	#PATH=$(sys-path)

        # Go into the top TeX build directory and make the paper.
	p=$$(pwd)
	export TEXINPUTS=$$p:$$TEXINPUTS
	cd $(texbdir)
	pdflatex -shell-escape -halt-on-error $$p/paper.tex

        # Come back to the top pipeline directory and copy the built PDF
        # file here.
	cd $$p
	cp $(texbdir)/$@ $@