blob: 2957ca2313aa87e0360845dde8803b732ca5b8de (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
.SUFFIXES: .tex
all: .tex.pdf
.tex.pdf:
latexmk $<
clean:
@$(RM) *pdf *toc *.1* *.2* *.3* *.eledsec* *.log *.fdb_latexmk *.aux *.end *.ilg *.ind *.idx *.out *.synctex.gz *.synctex.gz\(busy\)
|