summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2019-10-16 10:31:44 -0400
committerNick Mathewson <nickm@torproject.org>2019-10-16 10:31:44 -0400
commit911adb4d2b4e536eb4bd627a3cdba72f6ddf884b (patch)
tree8926c780a22a3aca410458915f2ce577dd562276
parent8413eec2c74fc518d3cbffc6deb9ae57eaea2a27 (diff)
downloadtor-911adb4d2b4e536eb4bd627a3cdba72f6ddf884b.tar.gz
tor-911adb4d2b4e536eb4bd627a3cdba72f6ddf884b.zip
Make doc/doxygen before running doxygen.
This makes out-of-tree doxygen builds work. Closes ticket 32113.
-rw-r--r--Makefile.am2
-rw-r--r--changes/ticket321133
2 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index f0d960efe7..32cb21f38c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -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
index 0000000000..ef7978f1b9
--- /dev/null
+++ b/changes/ticket32113
@@ -0,0 +1,3 @@
+ o Minor features (doxygen):
+ - "make doxygen" now works with out-of-tree builds. Closes ticket
+ 32113.