blob: e12613097014111d3bbe61faacf269abace2937a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
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)
|