summaryrefslogtreecommitdiff
path: root/Makefile.builds.in
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-10-31 15:26:19 +0000
committerMorgan Deters <mdeters@gmail.com>2010-10-31 15:26:19 +0000
commit39031822cf3f9faab7b5b9e6cbce46a5194503b1 (patch)
tree7f95265819554a20a2ef4637a4a8a6a83a7cfc0b /Makefile.builds.in
parentd4bfaa103d56d5c0172bf1457343a75ddea8a9b5 (diff)
enable dependence graphs in doxygen; fix lots of doxygen warnings, fix some documentation, and make it possible to "make doc" on a clean source tree (post-configure)
Diffstat (limited to 'Makefile.builds.in')
-rw-r--r--Makefile.builds.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.builds.in b/Makefile.builds.in
index 1aa79d220..5ef00509b 100644
--- a/Makefile.builds.in
+++ b/Makefile.builds.in
@@ -126,6 +126,12 @@ TAGS tags:
.PHONY: TAGS tags
+.PHONY: doc-builds doc-prereq
+doc-builds: doc-prereq
+ (cd $(CURRENT_BUILD) && $(MAKE) doxygen-doc)
+doc-prereq:
+ (cd $(CURRENT_BUILD) && for dir in `find . -name Makefile | xargs grep -l BUILT_SOURCES`; do (cd `dirname "$$dir"`; (cat Makefile; echo 'doc-prereq: $$(BUILT_SOURCES)') | make -f- doc-prereq); done)
+
# any other target than the default doesn't do the extra stuff above
%:
(cd $(CURRENT_BUILD) && $(MAKE) $@)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback