-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (25 loc) · 767 Bytes
/
Makefile
File metadata and controls
32 lines (25 loc) · 767 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
LATEX=latex
BIBTEX=bibtex
DVIPS=dvips
DVIPDF=dvipdf
DVIPDF=dvipdfm
PDFLATEX=pdflatex
#FIG-FILES = figs/*.png img/*.tex
TEX-FILES = *.tex
BIB-FILES = *.bib
TOP-LEVEL-ROOT = rt-nsf-2016
all: ${TOP-LEVEL-ROOT}.pdf
${TOP-LEVEL-ROOT}.pdf: ${PDF-FILES} ${TEX-FILES} ${BIB-FILES} ${FIG-FILES}
$(PDFLATEX) -shell-escape ${TOP-LEVEL-ROOT}
$(PDFLATEX) -shell-escape ${TOP-LEVEL-ROOT}
$(BIBTEX) ${TOP-LEVEL-ROOT}
$(PDFLATEX) -shell-escape ${TOP-LEVEL-ROOT}
$(PDFLATEX) -shell-escape ${TOP-LEVEL-ROOT}
web: all
cp $(TOP-LEVEL-ROOT).pdf ~/html/oopsla.pdf
dropbox: all
cp $(TOP-LEVEL-ROOT).pdf ~/Dropbox/oopsla2013\ paper/$(CRNAME)
clean:
rm -f *.auxlock *-blx.bib *.run.xml *.aux *.bbl *.blg *.log *.dvi *.out *.idx *.bak *~ *.toc *.lof
rm -f out/*
rm -f *.pdf