diff options
author | Prabhu Ramachandran | 2017-11-11 23:56:07 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2017-11-11 23:56:07 +0530 |
commit | a754b05d4a4c9686f9efe355408aaaec02a7e211 (patch) | |
tree | 236683821ec5004418f4bbc1787ca712562ac343 /advanced_python/Makefile | |
parent | 69728d2fefda84c104a06c3282082421accd7775 (diff) | |
download | python-workshops-a754b05d4a4c9686f9efe355408aaaec02a7e211.tar.gz python-workshops-a754b05d4a4c9686f9efe355408aaaec02a7e211.tar.bz2 python-workshops-a754b05d4a4c9686f9efe355408aaaec02a7e211.zip |
Getting started on advanced Python slides.
Diffstat (limited to 'advanced_python/Makefile')
-rw-r--r-- | advanced_python/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/advanced_python/Makefile b/advanced_python/Makefile new file mode 100644 index 0000000..12f21fd --- /dev/null +++ b/advanced_python/Makefile @@ -0,0 +1,15 @@ +.SUFFIXES: .tex .pdf + +.tex.pdf: + pdflatex $*.tex + pdflatex $*.tex + +SLIDES= names_objects.pdf + +all: $(SLIDES) + +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 *.synctex.gz |