masterthesis/assets/dot/Makefile

14 lines
146 B
Makefile
Raw Normal View History

2021-11-11 16:43:53 +01:00
DOT = $(wildcard *.dot)
PDF = $(DOT:.dot=.pdf)
.PHONY: build
build: $(PDF)
%.pdf: %.dot
dot -Tpdf $< -o $@
.PHONY: clean
clean:
rm -f *.pdf