Blame doc/Doxyfile-man1

Packit 577717
# This file describes the settings to be used by the documentation system
Packit 577717
# doxygen (www.doxygen.org) for PAPI utilities man-pages
Packit 577717
# The following overrides default values in Doxyfile-common
Packit 577717
#
Packit 577717
# All text after a hash (#) is considered a comment and will be ignored
Packit 577717
# The format is:
Packit 577717
#       TAG = value [value, ...]
Packit 577717
# For lists items can also be appended using:
Packit 577717
#       TAG += value [value, ...]
Packit 577717
# Values that contain spaces should be placed between quotes (" ")
Packit 577717
Packit 577717
@INCLUDE				= Doxyfile-common
Packit 577717
#---------------------------------------------------------------------------
Packit 577717
# configuration options related to the input files
Packit 577717
#---------------------------------------------------------------------------
Packit 577717
Packit 577717
# The INPUT tag can be used to specify the files and/or directories that contain
Packit 577717
# documented source files. You may enter file names like "myfile.cpp" or
Packit 577717
# directories like "/usr/src/myproject". Separate the files or directories
Packit 577717
# with spaces.
Packit 577717
Packit 577717
INPUT					= ../src/utils/
Packit 577717
Packit 577717
FILE_PATTERNS          = *.c 
Packit 577717
Packit 577717
# The RECURSIVE tag can be used to turn specify whether or not subdirectories
Packit 577717
# should be searched for input files as well. Possible values are YES and NO.
Packit 577717
# If left blank NO is used.
Packit 577717
Packit 577717
RECURSIVE              = YES
Packit 577717
Packit 577717
# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
Packit 577717
# defined locally in source files will be included in the documentation.
Packit 577717
# If set to NO only classes defined in header files are included.
Packit 577717
Packit 577717
EXTRACT_LOCAL_CLASSES  = NO
Packit 577717
Packit 577717
#---------------------------------------------------------------------------
Packit 577717
# configuration options related to the man page output
Packit 577717
#---------------------------------------------------------------------------
Packit 577717
Packit 577717
# If the GENERATE_MAN tag is set to YES (the default) Doxygen will
Packit 577717
# generate man pages
Packit 577717
Packit 577717
GENERATE_MAN           = YES
Packit 577717
Packit 577717
# The MAN_OUTPUT tag is used to specify where the man pages will be put.
Packit 577717
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
Packit 577717
# put in front of it. If left blank `man' will be used as the default path.
Packit 577717
Packit 577717
MAN_OUTPUT             = man
Packit 577717
Packit 577717
# The MAN_EXTENSION tag determines the extension that is added to
Packit 577717
# the generated man pages (default is the subroutine's section .3)
Packit 577717
Packit 577717
MAN_EXTENSION          = .1
Packit 577717
Packit 577717
# If the MAN_LINKS tag is set to YES and Doxygen generates man output,
Packit 577717
# then it will generate one additional man file for each entity
Packit 577717
# documented in the real man page(s). These additional files
Packit 577717
# only source the real man page, but without them the man command
Packit 577717
# would be unable to find the correct page. The default is NO.
Packit 577717
Packit 577717
MAN_LINKS              = NO