some cleaning

This commit is contained in:
gwen
2012-06-11 10:28:09 +02:00
parent 7e4a1358fe
commit 46a707ef3c
7 changed files with 132 additions and 121 deletions

View File

@ -0,0 +1,12 @@
SRC=$(wildcard *.tex)
OBJ=$(subst .tex,.pdf,$(SRC))
pdf: $(OBJ)
%.pdf: %.tex
pdflatex $<
clean:
rm -f $(OBJ)
rm -f *.aux *.log *.toc *.snm *.out *.nav