initial commit
This commit is contained in:
22
docs/Makefile
Normal file
22
docs/Makefile
Normal file
@@ -0,0 +1,22 @@
|
||||
.PHONY: build
|
||||
build: dst .WAIT \
|
||||
dst/system_arch.svg
|
||||
|
||||
export: exports .WAIT \
|
||||
exports/system_arch.svg
|
||||
|
||||
dst:
|
||||
mkdir dst
|
||||
|
||||
exports:
|
||||
mkdir exports
|
||||
|
||||
dst/%.svg: %.dot
|
||||
dot -Tsvg $< > $@
|
||||
|
||||
exports/%.svg: dst/%.svg
|
||||
svgcleaner $< $@
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -rf dst
|
Reference in New Issue
Block a user