]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Make doc/doxygen before running doxygen.
authorNick Mathewson <nickm@torproject.org>
Wed, 16 Oct 2019 14:31:44 +0000 (10:31 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 16 Oct 2019 14:31:44 +0000 (10:31 -0400)
This makes out-of-tree doxygen builds work.

Closes ticket 32113.

Makefile.am
changes/ticket32113 [new file with mode: 0644]

index f0d960efe7e0645e903765bc506e5e8724214452..32cb21f38c3369a06587557cda9e29ff2d99ecfc 100644 (file)
@@ -238,7 +238,7 @@ dist-rpm: dist-gzip
 
 .PHONY: doxygen
 doxygen: Doxyfile
-       doxygen
+       mkdir -p doc/doxygen && doxygen
 
 test: all
        $(top_builddir)/src/test/test
diff --git a/changes/ticket32113 b/changes/ticket32113
new file mode 100644 (file)
index 0000000..ef7978f
--- /dev/null
@@ -0,0 +1,3 @@
+  o Minor features (doxygen):
+    - "make doxygen" now works with out-of-tree builds. Closes ticket
+      32113.