aboutsummaryrefslogtreecommitdiff
path: root/reproduce/src/make/paper.mk
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2019-02-05 23:31:27 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2019-02-05 23:31:27 +0000
commite19c7d38f00fe3612a8c499f8ac4c965f52cb86b (patch)
treea97941b0ed98cd80aa2be0a1d2d958c76699474c /reproduce/src/make/paper.mk
parent438e1970093621d3c67acc900b17afdeaa60329f (diff)
Ability to package project into tarball or zip file
With this commit, it is now possible to package the project into a tarball or zip file, ready to be distributed to collaborators who only want to modify the final paper (and not do the analysis technicalities), or for uploading to sites like arXiv, or online LaTeX sharing pages.
Diffstat (limited to 'reproduce/src/make/paper.mk')
-rw-r--r--reproduce/src/make/paper.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/reproduce/src/make/paper.mk b/reproduce/src/make/paper.mk
index 17d59bf..aea6c60 100644
--- a/reproduce/src/make/paper.mk
+++ b/reproduce/src/make/paper.mk
@@ -126,6 +126,12 @@ paper.pdf: tex/pipeline.tex paper.tex $(texbdir)/paper.bbl \
@macros=$$(cat tex/pipeline.tex)
if [ x"$$macros" != x ]; then
+ # If it doesn't exist, make the `tex/tikz' symbolic link
+ # directory. This is necessary for situations when we just want
+ # TeX to use built figures instead of actually building the
+ # figures.
+ if [ ! -e tex/tikz ]; then ln -s $(tikzdir) tex/tikz; fi
+
# Go into the top TeX build directory and make the paper.
p=$$(pwd)
export TEXINPUTS=$$p:$$TEXINPUTS