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