summaryrefslogtreecommitdiff
path: root/scipy/basic/Makefile
diff options
context:
space:
mode:
authorPrabhu Ramachandran2016-12-09 18:13:35 +0530
committerPrabhu Ramachandran2016-12-09 18:13:35 +0530
commitc64ef73e7d1f180a82bfde53b1891cbaa633932a (patch)
tree5c6946dfe4e97e6382110aaca9dc35b5caf4913b /scipy/basic/Makefile
downloadpython-workshops-c64ef73e7d1f180a82bfde53b1891cbaa633932a.tar.gz
python-workshops-c64ef73e7d1f180a82bfde53b1891cbaa633932a.tar.bz2
python-workshops-c64ef73e7d1f180a82bfde53b1891cbaa633932a.zip
Initial files for scipy india 2016 tutorial.
These are all from older material delivered at various places. The material is from the PyConAPAC tutorial slides.
Diffstat (limited to 'scipy/basic/Makefile')
-rw-r--r--scipy/basic/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/scipy/basic/Makefile b/scipy/basic/Makefile
new file mode 100644
index 0000000..ddcab0c
--- /dev/null
+++ b/scipy/basic/Makefile
@@ -0,0 +1,21 @@
+.SUFFIXES: .tex .pdf
+
+.tex.pdf:
+ pdflatex $*.tex
+ pdflatex $*.tex
+
+SLIDES= session1.pdf \
+ session2.pdf \
+ session3.pdf \
+ session4.pdf
+
+all: $(SLIDES) quickref.pdf
+
+cleanall:
+ 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
+
+
+