tor/doc/HACKING/design/Makefile
Nick Mathewson 469051f650 Copy architectural documentation from tor-guts.git repository
I started this repository a while ago to work on documentation for
Tor's internals.  It needs substantial revision, but first, let's
get it copied into Tor's repository.

These files are copied, "warts and all", from the tor-guts.git repo,
commit de1e34259178b09861c0dea319c760fa80d0099a.

Part of 31819.
2019-09-24 19:26:04 -04:00

35 lines
477 B
Makefile

HTML= \
00-overview.html \
01-common-utils.html \
01a-memory.html \
01b-collections.html \
01c-time.html \
01d-crypto.html \
01e-os-compat.html \
01f-threads.html \
01g-strings.html \
02-dataflow.html \
03-modules.html \
this-not-that.html
PNG = \
diagrams/02/02-dataflow.png \
diagrams/02/02-connection-types.png
all: generated
generated: $(HTML) $(PNG)
%.html: %.md
maruku $< -o $@
%.png: %.dia
dia $< --export=$@
clean:
rm -f $(HTML)
rm -f $(PNG)