summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPuneeth Chaganti2010-01-10 18:10:31 +0530
committerPuneeth Chaganti2010-01-10 18:10:31 +0530
commit0bc6971d3c2f75d8ef94687c6793d8d38ea78b5a (patch)
tree7a9d54ca677033fc6634813fa0b5b1a2b28cdccf
parent4ea5b6737ad202fec6930923f7f1d64d41163ba0 (diff)
downloadworkshops-more-scipy-0bc6971d3c2f75d8ef94687c6793d8d38ea78b5a.tar.gz
workshops-more-scipy-0bc6971d3c2f75d8ef94687c6793d8d38ea78b5a.tar.bz2
workshops-more-scipy-0bc6971d3c2f75d8ef94687c6793d8d38ea78b5a.zip
Added first-cut makefiles.
-rw-r--r--Makefile42
-rw-r--r--day1/Makefile38
-rw-r--r--day2/Makefile36
3 files changed, 116 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..cf8a6d6
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,42 @@
+.SUFFIXES: .tex .pdf
+
+.tex.pdf:
+ pdflatex $*.tex
+ pdflatex $*.tex
+
+all: day-one day-two
+
+cheats:
+ cd day1; make cheats
+ cd day2; make cheats
+
+slides:
+ cd day1; make slides
+ cd day2; make slides
+
+quiz:
+ cd day1; make quiz
+ cd day2; make quiz
+
+day-one:
+ cd day1; make slides
+ cd day1; make cheats
+ cd day1; make quiz
+
+day-two:
+ cd day2; make slides
+ cd day2; make cheats
+ cd day2; make quiz
+
+clean-all:
+ rm -f *.dvi *.log *.bak *.aux *.bbl *.blg *.idx *.ps *.eps *.pdf *.toc *.out *~ *.vrb *.nav *.snm
+ cd day1; make clean-all
+ cd day2; make clean-all
+
+clean:
+ rm -f *.log *.bak *.aux *.bbl *.blg *.idx *.toc *.out *~ *.vrb *.nav *.snm
+ cd day1; make clean
+ cd day2; make clean
+
+
+
diff --git a/day1/Makefile b/day1/Makefile
new file mode 100644
index 0000000..6d7fa58
--- /dev/null
+++ b/day1/Makefile
@@ -0,0 +1,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
+
+
+
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
+
+
+