-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
executable file
·79 lines (60 loc) · 2.3 KB
/
Makefile
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
###################################################################
# Name of master .tex file for thesis
manuscript = thesis
bibliography = references
# name of build directory for thesis
bdir = compile
# user-acquired lengths for front and backmatter
front_length = 13
back_length = 9
# compilation options
latexopt = -halt-on-error -file-line-error -output-directory=$(bdir)
latexopt2 = -halt-on-error -file-line-error -output-directory=$(bdir)/chaptershit
###################################################################
# make all
###################################################################
all: $(manuscript).pdf
$(manuscript).pdf: $(manuscript).tex $(bibliography).bib
mkdir -p $(bdir)
pdflatex $(latexopt) $(manuscript)
biber $(bdir)/$(manuscript)
pdflatex $(latexopt) $(manuscript)
pdflatex $(latexopt) $(manuscript)
# biber -terse $(bdir)/$(manuscript)
###################################################################
# make intro
###################################################################
chapter = "\includeonly{chapters/intro/introduction}"
intro:
mkdir -p $(bdir)
pdflatex -jobname=int $(latexopt) $(chapter)"\input{thesis}"
biber $(bdir)/int
pdflatex -jobname=int $(latexopt) $(chapter)"\input{thesis}"
pdflatex -jobname=int $(latexopt) $(chapter)"\input{thesis}"
./pdfsplit.sh $(bdir)/int.pdf 14 16 $(bdir)/intro.pdf
rm $(bdir)/int.*
###################################################################
# make lit_review
###################################################################
lit_review: $(Ch1).pdf
# lit_review:
$(Ch1).pdf: $(manuscript).tex $(bibliography).bib
mkdir -p $(bdir)/chaptershit
pdflatex $(latexopt2) $(Ch1a)
biber $(bdir)/chaptershit/$(manuscript)
pdflatex $(latexopt2) $(Ch1a)
pdflatex $(latexopt2) $(Ch1a)
mv ./$(bdir)/chaptershit/$(manuscript).pdf ./$(bdir)/$(Ch1).pdf
###################################################################
# make outline
###################################################################
outline: $(outline).pdf
$(outline).pdf: $(outline).tex
latex $(latexopt) $(outline)
###################################################################
# make clean
###################################################################
clean:
rm -fr $(bdir)
find . -name "*.aux" -delete
.PHONY: all clean