blob: 6eebf07880f9fdb894f5c8967134fd95320e94c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
all: pdf
pdf:
for FILE in ??.tex ; do \
pdflatex $$FILE ; \
pdflatex $$FILE ; \
pdflatex $$FILE ; \
done
clean:
rm *.aux *.log *.toc
cleanall: clean
rm *.pdf
|