summaryrefslogtreecommitdiff
path: root/day2/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'day2/Makefile')
-rw-r--r--day2/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/day2/Makefile b/day2/Makefile
new file mode 100644
index 0000000..b56c095
--- /dev/null
+++ b/day2/Makefile
@@ -0,0 +1,36 @@
+.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
+
+QUIZ= day2quiz.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
+
+
+