1 DMBS - Dean's Makefile Build System
2 ===================================
8 The DOXYGEN module provides build targets to automatically generate API
9 documentation for a project, using the open-source Doxygen tool.
11 ## Importing This Module into a Makefile:
13 To use this module in your application makefile, add the following code to your
16 include $(DMBS_PATH)/doxygen.mk
20 This module requires the `doxygen` utility to be available in your system's
21 `PATH` variable. The `doxygen` utility is distributed on the project's
22 [official site](http://doxygen.org/) but is also
23 made available in many *nix operating system's package managers.
27 The following targets are supported by this module:
33 <td>Generate project documentation, via Doxygen.</td>
36 <td>doxygen-create</td>
37 <td>Create a new project Doxygen template, which can then be customized.</td>
40 <td>doxygen-upgrade</td>
41 <td>Upgrade an existing project Doxygen template to the latest Doxygen version.</td>
46 ## Mandatory Variables:
48 The following variables must be defined (with a `NAME = VALUE` syntax, one
49 variable per line) in the user makefile to be able to use this module:
55 <td>This module has no mandatory variables.</td>
60 ## Optional Variables:
62 The following variables may be defined (with a `NAME = VALUE` syntax, one
63 variable per line) in the user makefile. If not specified, a default value will
70 <td>Name of the Doxygen project configuration file that should be used when generating documentation, or creating/upgrading the configuration file.</td>
73 <td>DOXYGEN_FAIL_ON_WARNING</td>
74 <td>Boolean, if `Y` the build will fail if Doxygen encounters any errors or warnings. If `N`, fail only on errors. Default is `Y`.</td>
77 <td>DOXYGEN_OVERRIDE_PARAMS</td>
78 <td>List of `NAME=VALUE` parameters which should override the values specified in the project configuration file, when building documentation.</td>
83 ## Provided Variables:
85 The following variables may be referenced in a user makefile (via `$(NAME)`
86 syntax) if desired, as they are provided by this module.
92 <td>This module provides no variables.</td>
99 The following macros may be referenced in a user makefile (via
100 `$(call NAME, ARG1, ARG2, ...)` syntax) if desired, as they are provided by
107 <td>This module provides no macros.</td>
114 The changes to this module since its initial release are listed below, as of the
115 DMBS version where the change was made.