diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-17 06:54:56 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-17 11:42:48 -0800 |
commit | 0091e59d2a18c293fd952a9d707e609afdd6b17f (patch) | |
tree | 094899126558e846013a46379920af51a1a55313 /Doxyfile.in | |
parent | 94975c96d4f1f614e0877cac32ed5949cd0235f6 (diff) | |
download | riscv-openocd-0091e59d2a18c293fd952a9d707e609afdd6b17f.zip riscv-openocd-0091e59d2a18c293fd952a9d707e609afdd6b17f.tar.gz riscv-openocd-0091e59d2a18c293fd952a9d707e609afdd6b17f.tar.bz2 |
allow documentation to be configured
Add --disable-doxygen-html and --enable-doxygen-pdf options to the
configure script, allowing user to change the defaults. These
update the proess of munging the Doxygen configuration file to
use the settings thusly provided. Add options in README.
Diffstat (limited to 'Doxyfile.in')
-rw-r--r-- | Doxyfile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doxyfile.in b/Doxyfile.in index 077db10..49630f2 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -764,7 +764,7 @@ IGNORE_PREFIX = # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. -GENERATE_HTML = YES +GENERATE_HTML = @doxygen_as_html@ # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be @@ -981,7 +981,7 @@ FORMULA_FONTSIZE = 10 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. -GENERATE_LATEX = YES +GENERATE_LATEX = @doxygen_as_pdf@ # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be |