1.1 --- a/doc/Doxyfile.in Sat Apr 09 20:45:28 2005 +0000
1.2 +++ b/doc/Doxyfile.in Sun Apr 10 16:26:26 2005 +0000
1.3 @@ -115,7 +115,7 @@
1.4 # If left blank the directory from which doxygen is run is used as the
1.5 # path to strip.
1.6
1.7 -STRIP_FROM_PATH = ../src
1.8 +STRIP_FROM_PATH = @abs_top_srcdir@/src
1.9
1.10 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
1.11 # the path mentioned in the documentation of a class, which tells
1.12 @@ -124,7 +124,7 @@
1.13 # definition is used. Otherwise one should specify the include paths that
1.14 # are normally passed to the compiler using the -I flag.
1.15
1.16 -STRIP_FROM_INC_PATH = ../src
1.17 +STRIP_FROM_INC_PATH = @abs_top_srcdir@/src
1.18
1.19 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
1.20 # (but less readable) file names. This can be useful is your file systems
1.21 @@ -450,26 +450,11 @@
1.22 # directories like "/usr/src/myproject". Separate the files or directories
1.23 # with spaces.
1.24
1.25 -INPUT = mainpage.dox \
1.26 - getstart.dox \
1.27 - quicktour.dox \
1.28 - demoprograms.dox \
1.29 - graphs.dox \
1.30 - undir_graphs.dox \
1.31 - named-param.dox \
1.32 - maps.dox \
1.33 - coding_style.dox \
1.34 - groups.dox \
1.35 - namespaces.dox \
1.36 - license.dox \
1.37 - developers_interface.dox \
1.38 - graph_io.dox \
1.39 - dirs.dox \
1.40 - gwrappers.dox \
1.41 - ../src/lemon \
1.42 - ../src/lemon/concept \
1.43 - ../src/demo \
1.44 - ../src/test/test_tools.h
1.45 +INPUT = @abs_top_srcdir@/doc \
1.46 + @abs_top_srcdir@/src/lemon \
1.47 + @abs_top_srcdir@/src/lemon/concept \
1.48 + @abs_top_srcdir@/src/demo \
1.49 + @abs_top_srcdir@/src/test/test_tools.h
1.50
1.51 # If the value of the INPUT tag contains directories, you can use the
1.52 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
1.53 @@ -478,7 +463,7 @@
1.54 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
1.55 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm
1.56
1.57 -FILE_PATTERNS =
1.58 +FILE_PATTERNS = *.h *.cc *.dox
1.59
1.60 # The RECURSIVE tag can be used to turn specify whether or not subdirectories
1.61 # should be searched for input files as well. Possible values are YES and NO.