Skip to content
Snippets Groups Projects
Commit fa8ae26f authored by Christian Engwer's avatar Christian Engwer
Browse files

* Doxyfile is generate and thus found in the builddir

* run doxygen.css only if it exists

[[Imported from SVN: r5618]]
parent f25b96da
No related branches found
No related tags found
No related merge requests found
......@@ -66,13 +66,12 @@ doxygen-tag: FORCE Doxyfile $(DOXYGENHEADER) $(DOXYGENFOOTER)
set -e; \
if test ! -e doxygen-tag || test x"`find $(top_srcdir) \( $(DOXYGEN_DEPENDON) \) -a -cnewer doxygen-tag -print`" != x ; then \
echo Running doxygen. This may take a while... ; \
$(DOXYGEN) $(srcdir)/Doxyfile > doxygen.log 2>&1 <&- ; \
$(DOXYGEN) Doxyfile > doxygen.log 2>&1 <&- ; \
touch doxygen-tag ; \
if test "$$DOXYQUIET" != "1" && test -f doxyerr.log; then cat doxyerr.log; fi; \
test -x "$(DUNEWEBDOXY)/update-doxygen.css" && $(DUNEWEBDOXY)/update-doxygen.css $(abs_builddir)/html; \
# Make sure to always return a true exit code (even when the \
# previous test failed) \
true; \
if test "$$DOXYQUIET" != "1" && test -f doxyerr.log; \
then cat doxyerr.log; fi; \
if test -x "$(DUNEWEBDOXY)/update-doxygen.css"; \
then $(DUNEWEBDOXY)/update-doxygen.css $(abs_builddir)/html; fi; \
fi
doxygen-dist-install: doxygen-tag
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment