diff options
author | Prabhu Ramachandran | 2016-12-09 18:13:35 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2016-12-09 18:13:35 +0530 |
commit | c64ef73e7d1f180a82bfde53b1891cbaa633932a (patch) | |
tree | 5c6946dfe4e97e6382110aaca9dc35b5caf4913b /scipy/basic/Makefile | |
download | python-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/Makefile | 21 |
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 + + + |