diff options
author | Prabhu Ramachandran | 2018-05-15 19:17:01 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2018-05-15 19:17:01 +0530 |
commit | 2c5145f262e82996c9c2424159e5eb5dde47fae7 (patch) | |
tree | 86e1893822781826734eb59dc36ea73cab517066 /basic_python/Makefile | |
parent | cf7c9cc1bb9e4f004e547aaa728fe6254f3cf704 (diff) | |
download | python-workshops-2c5145f262e82996c9c2424159e5eb5dde47fae7.tar.gz python-workshops-2c5145f262e82996c9c2424159e5eb5dde47fae7.tar.bz2 python-workshops-2c5145f262e82996c9c2424159e5eb5dde47fae7.zip |
Reorganize files so order is obvious.
Diffstat (limited to 'basic_python/Makefile')
-rw-r--r-- | basic_python/Makefile | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/basic_python/Makefile b/basic_python/Makefile index 6310d3a..c7853b1 100644 --- a/basic_python/Makefile +++ b/basic_python/Makefile @@ -4,23 +4,23 @@ pdflatex $*.tex pdflatex $*.tex -SLIDES= basics.pdf \ - practice_basics.pdf \ - control_flow.pdf \ - practice_control_flow.pdf \ - core_data_structures.pdf \ - practice_ds.pdf \ - functions.pdf \ - practice_functions.pdf \ - modules.pdf \ - files.pdf \ - exceptions.pdf \ - practice_files_exc.pdf +SLIDES= 01_basics.pdf \ + 02_practice_basics.pdf \ + 03_control_flow.pdf \ + 04_practice_control_flow.pdf \ + 05_core_data_structures.pdf \ + 06_practice_ds.pdf \ + 07_functions.pdf \ + 08_practice_functions.pdf \ + 09_modules.pdf \ + 10_files.pdf \ + 11_exceptions.pdf \ + 12_practice_files_exc.pdf all: $(SLIDES) cleanall: - rm -f *.dvi *.log *.bak *.aux *.bbl *.blg *.idx *.ps *.eps *.pdf *.toc *.out *~ *.vrb *.nav *.snm + rm -f *.dvi *.log *.bak *.aux *.bbl *.blg *.idx *.ps *.eps *.pdf *.toc *.out *~ *.vrb *.nav *.snm *.synctex.gz clean: rm -f *.log *.bak *.aux *.bbl *.blg *.idx *.toc *.out *~ *.vrb *.nav *.snm *.synctex.gz |