Update of /cvsroot/mod-c/mod_c/doc
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv4241/doc
Added Files:
Makefile.am mod_c.doxy
Log Message:
doxygen support for automatic documentation.
--- NEW FILE: mod_c.doxy ---
# Doxyfile 1.4.2
# $Id: mod_c.doxy,v 1.1 2006/08/23 16:21:58 garana Exp $
# This file describes the settings to be used by the documentation system
# doxygen (www.doxygen.org) for a project
#
# All text after a hash (#) is considered a comment and will be ignored
# The format is:
# TAG = value [value, ...]
# For lists items can also be appended using:
# TAG += value [value, ...]
# Values that contain spaces should be placed between quotes (" ")
#---------------------------------------------------------------------------
# Project related configuration options
#---------------------------------------------------------------------------
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
[...1181 lines suppressed...]
# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
# generate a legend page explaining the meaning of the various boxes and
# arrows in the dot generated graphs.
GENERATE_LEGEND = YES
# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
# remove the intermediate dot files that are used to generate
# the various graphs.
DOT_CLEANUP = YES
#---------------------------------------------------------------------------
# Configuration::additions related to the search engine
#---------------------------------------------------------------------------
# The SEARCHENGINE tag specifies whether or not a search engine should be
# used. If set to NO the values of all tags below this one will be ignored.
SEARCHENGINE = NO
--- NEW FILE: Makefile.am ---
# $Id: Makefile.am,v 1.1 2006/08/23 16:21:58 garana Exp $
all-local:
$(DOXYGEN) mod_c.doxy
clean-local:
rm -rf html latex
#dist-hook:
#
|