[ogs-changes] dist/c++/ogs Doxyfile.in,1.1,1.2 Makefile.am,1.8,1.9
Status: Alpha
Brought to you by:
elemings
|
From: <ele...@us...> - 2003-04-04 20:23:14
|
Update of /cvsroot/ogs/dist/c++/ogs In directory sc8-pr-cvs1:/tmp/cvs-serv9450/c++/ogs Modified Files: Doxyfile.in Makefile.am Log Message: See ChangeLog files (Apr 3-4) for details. Index: Doxyfile.in =================================================================== RCS file: /cvsroot/ogs/dist/c++/ogs/Doxyfile.in,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Doxyfile.in 13 Jan 2003 05:22:14 -0000 1.1 --- Doxyfile.in 4 Apr 2003 20:22:41 -0000 1.2 *************** *** 337,342 **** # with spaces. ! INPUT = . support core magic ! INPUT += cclasses creatures feats items skills spells # If the value of the INPUT tag contains directories, you can use the --- 337,359 ---- # with spaces. ! INPUT = @top_srcdir@/ogs ! INPUT += @top_srcdir@/ogs/support ! INPUT += @top_srcdir@/ogs/core ! INPUT += @top_srcdir@/ogs/core/details ! #INPUT += @top_srcdir@/ogs/combat ! #INPUT += @top_srcdir@/ogs/combat/actions ! INPUT += @top_srcdir@/ogs/magic ! INPUT += @top_srcdir@/ogs/magic/abilities ! INPUT += @top_srcdir@/ogs/magic/feats ! INPUT += @top_srcdir@/ogs/cclasses ! INPUT += @top_srcdir@/ogs/creatures ! INPUT += @top_srcdir@/ogs/creatures/humanoids ! INPUT += @top_srcdir@/ogs/feats ! INPUT += @top_srcdir@/ogs/items ! INPUT += @top_srcdir@/ogs/items/rings ! INPUT += @top_srcdir@/ogs/items/wonders ! INPUT += @top_srcdir@/ogs/skills ! INPUT += @top_srcdir@/ogs/spells ! INPUT += @top_srcdir@/ogs/spells/conjurations # If the value of the INPUT tag contains directories, you can use the *************** *** 370,374 **** # certain files from those directories. ! EXCLUDE_PATTERNS = Template.* *.java test* # The EXAMPLE_PATH tag can be used to specify one or more files or --- 387,391 ---- # certain files from those directories. ! EXCLUDE_PATTERNS = # The EXAMPLE_PATH tag can be used to specify one or more files or *************** *** 500,504 **** # will generate a default style sheet ! HTML_STYLESHEET = @top_builddir@doc/stylesheet.css # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, --- 517,521 ---- # will generate a default style sheet ! HTML_STYLESHEET = @top_srcdir@/doc/stylesheet.css # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, Index: Makefile.am =================================================================== RCS file: /cvsroot/ogs/dist/c++/ogs/Makefile.am,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Makefile.am 29 Mar 2003 02:31:34 -0000 1.8 --- Makefile.am 4 Apr 2003 20:22:41 -0000 1.9 *************** *** 82,83 **** --- 82,96 ---- spells/libogs-spells.la + docdir = $(top_builddir)/doc + + if HAVE_DOXYGEN + doc: Doxyfile + rm -rf $(docdir)/html $(docdir)/latex + $(DOXYGEN) + else + doc: + @echo "Doxygen (www.doxygen.org) is required to build documantation." + endif + + .PHONY: doc + |