summaryrefslogtreecommitdiff
path: root/basic_python/Makefile
blob: 6310d3a1f21a7b8723fed8a4dbc9f88ef4f374e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.SUFFIXES: .tex .pdf

.tex.pdf:
	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

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