tfm-report/img/Makefile

10 lines
127 B
Makefile
Raw Normal View History

2019-10-18 10:54:33 +02:00
dotfiles = $(shell ls *.dot | sed 's/\.dot/\.pdf/' -)
all: $(dotfiles)
%.pdf: %.dot
dot -Tpdf $< -o $@
clean:
rm -f *.pdf