-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
27 lines (21 loc) · 702 Bytes
/
Copy pathmakefile
File metadata and controls
27 lines (21 loc) · 702 Bytes
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
TEXS= $(shell find . -name "*.tex")
TIKZS=$(shell find . -name "*.tikz")
LATEX=latex
BIBTEX=bibtex
DVIPS=dvips
PS2PDF=ps2pdf
all: Dissertation.pdf
Dissertation.pdf: Dissertation.ps
$(PS2PDF) -dEmbedAllFonts=true Dissertation.ps test.pdf
ps2pdf13 -dPDFSETTINGS=/prepress test.pdf Dissertation.pdf
rm -f test.pdf
Dissertation.ps: Dissertation.dvi
$(DVIPS) -Pdownload35 -ta4 Dissertation.dvi
Dissertation.dvi: ${TEXS} ${TIKZS} Bibliography.bib
$(LATEX) -shell-escape Dissertation
$(BIBTEX) Dissertation
$(LATEX) -shell-escape Dissertation
$(LATEX) -shell-escape Dissertation
clean:
$(RM) -f Dissertation.pdf Dissertation.ps Dissertation.dvi
$(RM) -f *.log *.aux *.toc *.bbl *.lot *.lof