-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathMakefile
More file actions
45 lines (35 loc) · 937 Bytes
/
Makefile
File metadata and controls
45 lines (35 loc) · 937 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
FIGURES=figure.pdf
all: paper.pdf supp.pdf
paper.pdf: paper.tex authors.tex paper.bib ${FIGURES}
pdflatex paper.tex
bibtex paper
pdflatex paper.tex
pdflatex paper.tex
supp.pdf: supp.tex authors.tex tools_table.tex functionality_table.tex paper.bib
pdflatex supp.tex
bibtex supp
pdflatex supp.tex
pdflatex supp.tex
arxiv-submission.tar.gz:
rm -fR arxiv-submission
mkdir arxiv-submission
cp paper.tex supp.tex authors.tex tools_table.tex functionality_table.tex naturemag.bst paper.bib figure.pdf ./arxiv-submission/
tar -zcvf arxiv-submission.tar.gz arxiv-submission
paper.ps: paper.dvi
dvips paper
paper.dvi: paper.tex paper.bib
latex paper.tex
bibtex paper
latex paper.tex
latex paper.tex
figures/%.pdf: plot.py
python3 plot.py $*
clean:
rm -f *.log *.dvi *.aux
rm -f *.blg *.bbl
rm -f *.eps *.[1-9]
rm -f src/*.mpx *.mpx
mrproper: clean
rm -f *.ps *.pdf
%.pdf : %.svg
inkscape $< --export-filename=$@