blob: 5f3d94dfabd4df4551f1ba75f7d802f739e18be2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Build thesis, copy it to the appropiate deliverable name too.
# Yes, pdflatex needs to run twice (sometimes even three times?).
# https://www.learnlatex.org/en/lesson-12
# Supposedly `xelatex` is an improved version of `pdflatex` that supports
# unicode. But I'm having trouble with it, seems like it can't find the
# appropiate fonts.
DELIVERABLE="20170895_RobertoTokumori_PatriciaNatividad_E1.pdf"
.PHONY: all
all: thesis.bib
pdflatex thesis.tex
biber thesis
pdflatex thesis.tex
cp thesis.pdf $(DELIVERABLE)
.PHONY: clean
clean:
rm *.aux *.bbl *.bcf *.blg *.out *.run.xml *.toc thesis.log \
chapter/*.aux
|