Makefile 152 Bytes
Newer Older
nextime's avatar
nextime committed
1 2 3 4 5 6 7 8 9 10 11 12 13

figures_dia=$(shell echo *.dia)
figures_png=$(figures_dia:.dia=.png)


all: $(figures_png)

%.png: %.dia
	dia $< -e $@


clean:
	-rm -f $(figures_png)