summaryrefslogtreecommitdiff
path: root/Makefile
blob: ecae5100626e7ab71844d1b29eba233096d4dec0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

all: chrysalide-refcard.pdf unix-dev-refcard.pdf


%.dvi: %.tex
	latex $<

%.pdf: %.dvi
	dvipdf $<


clean:
	@find -maxdepth 1 -type f -not -name 'Makefile' -and -not -name '*.tex' -and -not -name '*xcf' -delete