WIS-SEC-BOF/work/dot/Makefile

13 lines
139 B
Makefile
Raw Normal View History

2019-12-10 20:36:14 +01:00
.PHONY: clean build
DOT = $(wildcard *.dot)
PDF = $(DOT:.dot=.pdf)
build: $(PDF)
%.pdf: %.dot
dot -Tpdf $< -o $@
clean:
rm -f $(PDF)