Add dot sources
This commit is contained in:
12
work/dot/Makefile
Normal file
12
work/dot/Makefile
Normal file
@ -0,0 +1,12 @@
|
||||
.PHONY: clean build
|
||||
|
||||
DOT = $(wildcard *.dot)
|
||||
PDF = $(DOT:.dot=.pdf)
|
||||
|
||||
build: $(PDF)
|
||||
|
||||
%.pdf: %.dot
|
||||
dot -Tpdf $< -o $@
|
||||
|
||||
clean:
|
||||
rm -f $(PDF)
|
Reference in New Issue
Block a user