Changeset 9d5737b in git for dox


Ignore:
Timestamp:
Jun 14, 2014, 6:19:23 PM (10 years ago)
Author:
Oleksandr Motsak <http://goo.gl/mcpzY>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
4f0ab66ad375b7db1188fb8e52a422860c543a10
Parents:
9434d56e8ef4f81efbcce8576989b9e7dba52103
git-author:
Oleksandr Motsak <http://goo.gl/mcpzY>2014-06-14 18:19:23+02:00
git-committer:
Oleksandr Motsak <http://goo.gl/mcpzY>2014-06-16 18:30:04+02:00
Message:
Doxygen / BS
Location:
dox
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • dox/Doxyfile.in

    r9434d5 r9d5737b  
    153153# This tag requires that the tag FULL_PATH_NAMES is set to YES.
    154154
    155 STRIP_FROM_PATH        = @abs_top_srcdir@
     155STRIP_FROM_PATH        = $(abs_top_srcdir)
    156156
    157157# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
     
    755755# Note: If this tag is empty the current directory is searched.
    756756
    757 INPUT                  = @abs_top_srcdir@/omalloc/ \
    758                          @abs_top_srcdir@/resources/ \
    759                          @abs_top_srcdir@/factory/ \
    760                          @abs_top_srcdir@/kernel/ \
    761                          @abs_top_srcdir@/libpolys/ \
    762                          @abs_top_srcdir@/Singular/ \
    763                          @abs_top_srcdir@/main.dox
     757INPUT                  = $(abs_top_srcdir)/omalloc/ \
     758                         $(abs_top_srcdir)/resources/ \
     759                         $(abs_top_srcdir)/factory/ \
     760                         $(abs_top_srcdir)/kernel/ \
     761                         $(abs_top_srcdir)/libpolys/ \
     762                         $(abs_top_srcdir)/Singular/ \
     763                         $(abs_top_srcdir)/main.dox
    764764
    765765# This tag can be used to specify the character encoding of the source files
     
    801801# run.
    802802
    803 EXCLUDE                = @abs_top_srcdir@/factory/examples \
    804                          @abs_top_srcdir@/kernel/old \
    805                          @abs_top_srcdir@/omalloc/Misc
     803EXCLUDE                = $(abs_top_srcdir)/factory/examples \
     804                         $(abs_top_srcdir)/kernel/old \
     805                         $(abs_top_srcdir)/omalloc/Misc
    806806
    807807# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
     
    836836# command).
    837837
    838 EXAMPLE_PATH           = @abs_top_srcdir@
     838EXAMPLE_PATH           = $(abs_top_srcdir)
    839839
    840840# If the value of the EXAMPLE_PATH tag contains directories, you can use the
     
    856856# \image command).
    857857
    858 IMAGE_PATH             = @abs_top_srcdir@
     858IMAGE_PATH             = $(abs_top_srcdir)
    859859
    860860# The INPUT_FILTER tag can be used to specify a program that doxygen should
     
    19381938# This tag requires that the tag SEARCH_INCLUDES is set to YES.
    19391939
    1940 INCLUDE_PATH           = @abs_top_builddir@/ \
    1941                          @abs_top_builddir@/factory \
    1942                          @abs_top_builddir@/libpolys
     1940INCLUDE_PATH           = $(abs_top_builddir)/ \
     1941                         $(abs_top_builddir)/factory \
     1942                         $(abs_top_builddir)/libpolys
    19431943
    19441944# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
     
    22512251# This tag requires that the tag HAVE_DOT is set to YES.
    22522252
    2253 DOTFILE_DIRS           = @abs_top_srcdir@
     2253DOTFILE_DIRS           = $(abs_top_srcdir)
    22542254
    22552255# The MSCFILE_DIRS tag can be used to specify one or more directories that
  • dox/Makefile.am

    r9434d5 r9d5737b  
     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
    119if HAVE_DOXYGEN
    220
    3 doxyfile.stamp:
    4         $(DOXYGEN) Doxyfile
     21doxyfile.stamp:
     22        $(MAKE) doxyrun abs_top_srcdir="$(abs_top_srcdir)" abs_top_builddir="$(abs_top_builddir)" \
     23        DOXYGEN_CONFIG="$(abs_srcdir)/Doxyfile.in" DOXYGEN="$(DOXYGEN)"
    524        echo Timestamp > doxyfile.stamp
    625
     
    1534endif
    1635
    17 EXTRA_DIST = Doxyfile.in
     36EXTRA_DIST = Doxyfile.in1 Doxyfile.in
Note: See TracChangeset for help on using the changeset viewer.