summaryrefslogtreecommitdiff
path: root/esempi/Makefile
blob: fdbc46d74529f538667b165948ceb5348494acec (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 *.out *.toc || true

cleanall: clean
	rm *.pdf