aboutsummaryrefslogtreecommitdiffstats
path: root/example/Makefile
blob: d6d0b050421c6eb1e7ff0efc771df1e2abaf6ae6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
.POSIX:

all: dict.pdf

dict.pdf: dict.tex
	pdflatex dict.tex < /dev/null

clean:
	-rm dict.aux dict.log dict.pdf

.PHONY: all clean