blob: 6d7fa58a9a967b8b0a9b265f61040c895aa3278d (
plain)
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
|
.SUFFIXES: .tex .pdf
.tex.pdf:
pdflatex $*.tex
pdflatex $*.tex
SLIDES= session1.pdf \
session2.pdf \
session3.pdf \
session4.pdf \
session5.pdf \
session6.pdf
CHEATS= cheatsheet1.pdf \
cheatsheet2.pdf \
cheatsheet3.pdf \
cheatsheet4.pdf \
cheatsheet6.pdf
QUIZ= day1quiz1.pdf \
day1quiz2.pdf \
all: $(SLIDES) $(CHEATS) $(QUIZ)
cheats: $(CHEATS)
slides: $(SLIDES) $(CHEATS)
quiz: $(QUIZ)
clean-all:
rm -f *.dvi *.log *.bak *.aux *.bbl *.blg *.idx *.ps *.eps *.pdf *.toc *.out *~ *.vrb *.nav *.snm
clean:
rm -f *.log *.bak *.aux *.bbl *.blg *.idx *.toc *.out *~ *.vrb *.nav *.snm
|