blob: 1cdc5721b8e10428099395671806ec2ed3eddcbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
.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
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
|