projects
/
tiramisu.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
7b32a56e570e5bf53f2eb8ec089ec345b0b44aeb
[tiramisu.git]
/
doc
/
eole-report
/
presentation
/
Makefile
1
SRC=$(wildcard *.tex)
2
OBJ=$(subst .tex,.pdf,$(SRC))
3
4
pdf: $(OBJ)
5
6
%.pdf: %.tex
7
pdflatex $<
8
9
clean:
10
rm -f $(OBJ)
11
rm -f *.aux *.log *.toc *.snm *.out *.nav
12