mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-02-13 09:03:44 -05:00
- Change incorrect "key sharing" references to "key forwarding". - Explain that this is a feature that needs to be enabled. - Regenerate the key forwarding algorithm diagram. - Provide a spec link and mention alternative names.
16 lines
288 B
Makefile
16 lines
288 B
Makefile
.PHONY: default clean png pdf
|
|
|
|
default: model.png model.pdf
|
|
|
|
clean:
|
|
rm -f model.png model.pdf
|
|
|
|
pdf: model.pdf
|
|
png: model.png
|
|
|
|
model.pdf: model.dot
|
|
./setdotlabelwidth 45 <model.dot | dot -Tpdf -o model.pdf
|
|
|
|
model.png: model.dot
|
|
./setdotlabelwidth 45 <model.dot | dot -Tpng -o model.png
|