-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (19 loc) · 742 Bytes
/
Makefile
File metadata and controls
27 lines (19 loc) · 742 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
all : cefp.pdf lab-exercises.pdf
clean :
rm cefp.pdf *.bbl *.aux *.blg *.log *.out *.toc
%.pdf : %.tex %.bib
pdflatex $<
bibtex $*
pdflatex $<
pdflatex $<
cefp.pdf : par.tex conc.tex
lab-exercises.pdf : lab-exercises.tex
xelatex $<
xelatex $<
kmeans-example.png : kmeans-example-points kmeans-example-clusters
gnuplot -e 'set key off; set terminal png; plot "kmeans-example-points","kmeans-example-clusters" with points pointsize 20 pointtype 6' >$@
kmeans-results.png : kmeans-results
gnuplot -e 'set key off; set terminal png; plot "kmeans-results" with linespoints' >$@
upload : cefp.pdf lab-exercises.pdf
scp cefp.pdf community:public_html/par-tutorial.pdf
scp lab-exercises.pdf community:public_html/lab-exercises.pdf