From: Tim R. <ti...@us...> - 2004-07-20 09:07:34
|
Update of /cvsroot/csdopenglnet/csdOpenGL/doxygen In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27578/doxygen Modified Files: Makefile Added Files: freeglut.conf Log Message: added freeglut support --- NEW FILE: freeglut.conf --- # Doxyfile 1.3.5 # 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 # by quotes) that should identify the project. [...1059 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::addtions 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 Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/doxygen/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile 12 Jul 2004 17:17:40 -0000 1.1.1.1 --- Makefile 20 Jul 2004 09:07:22 -0000 1.2 *************** *** 1,5 **** --- 1,14 ---- + all: base freeglut + + base: xml/gl_8h.xml + + freeglut: xml/freeglut_8h.xml + xml/gl_8h.xml: /usr/include/GL/gl.h doxygen doxygen.conf + xml/freeglut_8h.xml: /usr/include/GL/freeglut.h + doxygen freeglut.conf + all: doxygen doxygen.conf *************** *** 11,14 **** --- 20,24 ---- .IGNORE: clean + freeglut .EXPORT_ALL_VARIABLES: *************** *** 16,18 **** --- 26,29 ---- .PHONY: clean + freeglut |