]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove Makefile from doc/HACKING/design
authorNick Mathewson <nickm@torproject.org>
Wed, 6 Nov 2019 20:47:29 +0000 (15:47 -0500)
committerNick Mathewson <nickm@torproject.org>
Wed, 6 Nov 2019 20:47:29 +0000 (15:47 -0500)
doc/HACKING/design/Makefile [deleted file]

diff --git a/doc/HACKING/design/Makefile b/doc/HACKING/design/Makefile
deleted file mode 100644 (file)
index e126130..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-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)