source: git/dox/Makefile.am

spielwiese
Last change on this file was 3c6df4, checked in by Hans Schoenemann <hannes@…>, 4 years ago
removed GIT_VERSION and related
  • Property mode set to 100644
File size: 1.3 KB
Line 
1doxyrun:
2        if [ -z "$(DOXYGEN)" ]; then \
3                which -s doxygen || (echo Please add 'doxygen' to your PATH; exit 1;); \
4                export DOXYGEN=`which -s doxygen`; \
5        fi
6        if [ -z "$(DOXYGEN_CONFIG)" ]; then \
7                echo Please set 'DOXYGEN_CONFIG' env. var!; \
8                exit 1; \
9        fi
10        if [ ! -r "$(DOXYGEN_CONFIG)" ]; then \
11                echo Please make the doxygen configuration readable: "$(DOXYGEN_CONFIG)"!; \
12                exit 1; \
13        fi
14        export abs_top_srcdir="$(abs_top_srcdir)"; \
15        export abs_top_builddir="$(abs_top_builddir)"; \
16        echo Running "$(DOXYGEN)" "$(DOXYGEN_CONFIG)" with abs_top_srcdir: "$(abs_top_srcdir)", abs_top_builddir: "$(abs_top_builddir)", ...; \
17        $(DOXYGEN) $(DOXYGEN_CONFIG) ; \
18        echo Finished running "$(DOXYGEN)" "$(DOXYGEN_CONFIG)" with abs_top_srcdir: "$(abs_top_srcdir)", abs_top_builddir: "$(abs_top_builddir)" ...;
19
20if HAVE_DOXYGEN
21
22## doxyfile.stamp:
23html:
24        $(MAKE) doxyrun abs_top_srcdir="$(abs_top_srcdir)" abs_top_builddir="$(abs_top_builddir)" \
25        DOXYGEN_CONFIG="$(abs_srcdir)/Doxyfile.in" DOXYGEN="$(DOXYGEN)"
26##      echo Timestamp > doxyfile.stamp
27
28## CLEANFILES = doxyfile.stamp
29
30# all-local: doxyfile.stamp
31
32## html: doxyfile.stamp
33
34clean-local:
35        rm -f html_dox.log tags
36        rm -rf html
37endif
38
39EXTRA_DIST = Doxyfile.in logo.png DoxygenLayout.xml header.html footer.html stylesheet.css
Note: See TracBrowser for help on using the repository browser.