diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2004-05-16 22:07:02 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2004-05-16 22:07:02 +0000 |
commit | 3ef972f538e1ff207f5919a8068bf14af18fb270 (patch) | |
tree | b415cc2b4ec9a51422eca7dd2dc4e101935a8f02 /doxygen | |
parent | de4b3bb7766f242cd7c46841250405f5fd6bb7d3 (diff) |
Replaced 'core' with 'main'.
Other minor updates.
Diffstat (limited to 'doxygen')
-rw-r--r-- | doxygen/Makefile | 7 | ||||
-rw-r--r-- | doxygen/common.doxy | 2 | ||||
-rw-r--r-- | doxygen/main.doxy (renamed from doxygen/core.doxy) | 6 |
3 files changed, 8 insertions, 7 deletions
diff --git a/doxygen/Makefile b/doxygen/Makefile index c599c826c4..4da21fa18f 100644 --- a/doxygen/Makefile +++ b/doxygen/Makefile @@ -1,12 +1,13 @@ +
default: full
all: full subset
-
+
%.tag: %.doxy
doxygen $<
FULL = \
- core.doxy \
+ main.doxy \
math.doxy \
array_cache.doxy \
swrast.doxy \
@@ -18,7 +19,7 @@ full: $(FULL:.doxy=.tag) $(foreach FILE,$(FULL),doxygen $(FILE);)
SUBSET = \
- core.doxy \
+ main.doxy \
math.doxy \
miniglx.doxy
diff --git a/doxygen/common.doxy b/doxygen/common.doxy index 284cdc67c3..022085eb4b 100644 --- a/doxygen/common.doxy +++ b/doxygen/common.doxy @@ -23,7 +23,7 @@ PROJECT_NAME = Mesa # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 5.1 +PROJECT_NUMBER = 6.1 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/doxygen/core.doxy b/doxygen/main.doxy index bb84bd31df..fa0e67670c 100644 --- a/doxygen/core.doxy +++ b/doxygen/main.doxy @@ -5,7 +5,7 @@ #--------------------------------------------------------------------------- # General configuration options #--------------------------------------------------------------------------- -PROJECT_NAME = "Mesa Core" +PROJECT_NAME = "Mesa Core / Main files" #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- @@ -23,7 +23,7 @@ FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- -HTML_OUTPUT = core +HTML_OUTPUT = main #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- @@ -45,4 +45,4 @@ TAGFILES = tnl_dd.tag=../tnl_dd \ swrast.tag=../swrast \ swrast_setup.tag=../swrast_setup \ tnl.tag=../tnl -GENERATE_TAGFILE = core.tag +GENERATE_TAGFILE = main.tag |