Author: kpvdr
Date: 2010-12-03 14:48:36 -0500 (Fri, 03 Dec 2010)
New Revision: 4422
Modified:
store/trunk/cpp/docs/Makefile.am
store/trunk/cpp/docs/jrnl_tmpl.dox
Log:
Update to doxygen config to include more directories for documentation
Modified: store/trunk/cpp/docs/Makefile.am
===================================================================
--- store/trunk/cpp/docs/Makefile.am 2010-12-03 12:23:44 UTC (rev 4421)
+++ store/trunk/cpp/docs/Makefile.am 2010-12-03 19:48:36 UTC (rev 4422)
@@ -41,9 +41,9 @@
@doxygen jrnl_tmpl.dox
# FIXME: doxygen seems to create files that do not compile under latex on 64-bit
# so the following section is disabled until this is sorted out.
-# @make -C latex
+ @make -C latex
# @cd latex; dvipdf refman.dvi refman.pdf
-# @cd latex; dvips refman.dvi -o refman.ps
+ @cd latex; dvips refman.dvi -o refman.ps
# @ln -fs latex/refman.pdf rhmj.pdf
# @ln -fs latex/refman.ps rhmj.ps
else
Modified: store/trunk/cpp/docs/jrnl_tmpl.dox
===================================================================
--- store/trunk/cpp/docs/jrnl_tmpl.dox 2010-12-03 12:23:44 UTC (rev 4421)
+++ store/trunk/cpp/docs/jrnl_tmpl.dox 2010-12-03 19:48:36 UTC (rev 4422)
@@ -514,7 +514,11 @@
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
-INPUT = ../lib/jrnl
+INPUT = ../lib \
+ ../lib/jrnl \
+ ../lib/jrnl2 \
+ ../perf \
+ ../tools
# This tag can be used to specify the character encoding of the source files that
# doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default
@@ -531,7 +535,8 @@
# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
FILE_PATTERNS = *.cpp \
- *.hpp
+ *.hpp \
+ *.h
# The RECURSIVE tag can be used to turn specify whether or not subdirectories
# should be searched for input files as well. Possible values are YES and NO.