aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: a02d73a6da29d81b176d3125a3ec9c179cb94ca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
GL=./gen_ladder.pl
DOT=dot

default:

%.dot:	%.lad
	$(GL) $^ > $@

%.ps:	%.dot
	$(DOT) -Tps < $^ > $@

%.svg:	%.dot
	$(DOT) -Tsvg < $^ > $@

clean:
	rm *.dot *.ps *.svg