WIS-SEC-BOF/work/dot/Makefile
2019-12-10 20:36:14 +01:00

13 lines
139 B
Makefile

.PHONY: clean build
DOT = $(wildcard *.dot)
PDF = $(DOT:.dot=.pdf)
build: $(PDF)
%.pdf: %.dot
dot -Tpdf $< -o $@
clean:
rm -f $(PDF)