Archived
3
0

initial commit

This commit is contained in:
2025-03-04 11:22:53 +01:00
commit dbb179bc47
5 changed files with 40 additions and 0 deletions

22
docs/Makefile Normal file
View 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