Archived
3
0
This repository has been archived on 2025-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zmp24-docs/docs/Makefile
Ondřej Mekina 975ebedace sketch the news module architecture (#2)
* make rough news module structure prototype

* update generic structure

* remove auth from news module structure
2025-03-12 22:42:06 +01:00

25 lines
311 B
Makefile

.PHONY: build
build: dst .WAIT \
dst/system_arch.svg \
dst/news_module.svg
export: exports .WAIT \
exports/system_arch.svg \
exports/news_module.svg
dst:
mkdir dst
exports:
mkdir exports
dst/%.svg: %.dot
dot -Tsvg $< > $@
exports/%.svg: dst/%.svg
svgcleaner $< $@
.PHONY: clean
clean:
rm -rf dst