xref: /aosp_15_r20/external/libopus/doc/Doxyfile.in (revision a58d3d2adb790c104798cd88c8a3aff4fa8b82cc)
1*a58d3d2aSXin Li# Doxyfile 1.8.18
2*a58d3d2aSXin Li
3*a58d3d2aSXin Li# This file describes the settings to be used by the documentation system
4*a58d3d2aSXin Li# doxygen (www.doxygen.org) for a project.
5*a58d3d2aSXin Li#
6*a58d3d2aSXin Li# All text after a double hash (##) is considered a comment and is placed in
7*a58d3d2aSXin Li# front of the TAG it is preceding.
8*a58d3d2aSXin Li#
9*a58d3d2aSXin Li# All text after a single hash (#) is considered a comment and will be ignored.
10*a58d3d2aSXin Li# The format is:
11*a58d3d2aSXin Li# TAG = value [value, ...]
12*a58d3d2aSXin Li# For lists, items can also be appended using:
13*a58d3d2aSXin Li# TAG += value [value, ...]
14*a58d3d2aSXin Li# Values that contain spaces should be placed between quotes (\" \").
15*a58d3d2aSXin Li
16*a58d3d2aSXin Li# Only non-default options are included below to improve portability
17*a58d3d2aSXin Li# between doxygen versions.
18*a58d3d2aSXin Li#
19*a58d3d2aSXin Li#---------------------------------------------------------------------------
20*a58d3d2aSXin Li# Project related configuration options
21*a58d3d2aSXin Li#---------------------------------------------------------------------------
22*a58d3d2aSXin Li
23*a58d3d2aSXin Li# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
24*a58d3d2aSXin Li# double-quotes, unless you are using Doxywizard) that should identify the
25*a58d3d2aSXin Li# project for which the documentation is generated. This name is used in the
26*a58d3d2aSXin Li# title of most generated pages and in a few other places.
27*a58d3d2aSXin Li# The default value is: My Project.
28*a58d3d2aSXin Li
29*a58d3d2aSXin LiPROJECT_NAME           = Opus
30*a58d3d2aSXin Li
31*a58d3d2aSXin Li# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
32*a58d3d2aSXin Li# could be handy for archiving the generated documentation or if some version
33*a58d3d2aSXin Li# control system is used.
34*a58d3d2aSXin Li
35*a58d3d2aSXin LiPROJECT_NUMBER         = @VERSION@
36*a58d3d2aSXin Li
37*a58d3d2aSXin Li# Using the PROJECT_BRIEF tag one can provide an optional one line description
38*a58d3d2aSXin Li# for a project that appears at the top of each page and should give viewer a
39*a58d3d2aSXin Li# quick idea about the purpose of the project. Keep the description short.
40*a58d3d2aSXin Li
41*a58d3d2aSXin LiPROJECT_BRIEF          = "Opus audio codec (RFC 6716): API and operations manual"
42*a58d3d2aSXin Li
43*a58d3d2aSXin Li# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
44*a58d3d2aSXin Li# in the documentation. The maximum height of the logo should not exceed 55
45*a58d3d2aSXin Li# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
46*a58d3d2aSXin Li# the logo to the output directory.
47*a58d3d2aSXin Li
48*a58d3d2aSXin LiPROJECT_LOGO           =
49*a58d3d2aSXin Li
50*a58d3d2aSXin Li# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
51*a58d3d2aSXin Li# before files name in the file list and in the header files. If set to NO the
52*a58d3d2aSXin Li# shortest path that makes the file name unique will be used
53*a58d3d2aSXin Li# The default value is: YES.
54*a58d3d2aSXin Li
55*a58d3d2aSXin LiFULL_PATH_NAMES        = NO
56*a58d3d2aSXin Li
57*a58d3d2aSXin Li# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
58*a58d3d2aSXin Li# first line (until the first dot) of a Javadoc-style comment as the brief
59*a58d3d2aSXin Li# description. If set to NO, the Javadoc-style will behave just like regular Qt-
60*a58d3d2aSXin Li# style comments (thus requiring an explicit @brief command for a brief
61*a58d3d2aSXin Li# description.)
62*a58d3d2aSXin Li# The default value is: NO.
63*a58d3d2aSXin Li
64*a58d3d2aSXin LiJAVADOC_AUTOBRIEF      = YES
65*a58d3d2aSXin Li
66*a58d3d2aSXin Li# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
67*a58d3d2aSXin Li# uses this value to replace tabs by spaces in code fragments.
68*a58d3d2aSXin Li# Minimum value: 1, maximum value: 16, default value: 4.
69*a58d3d2aSXin Li
70*a58d3d2aSXin LiTAB_SIZE               = 8
71*a58d3d2aSXin Li
72*a58d3d2aSXin Li# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
73*a58d3d2aSXin Li# only. Doxygen will then generate output that is more tailored for C. For
74*a58d3d2aSXin Li# instance, some of the names that are used will be different. The list of all
75*a58d3d2aSXin Li# members will be omitted, etc.
76*a58d3d2aSXin Li# The default value is: NO.
77*a58d3d2aSXin Li
78*a58d3d2aSXin LiOPTIMIZE_OUTPUT_FOR_C  = YES
79*a58d3d2aSXin Li
80*a58d3d2aSXin Li#---------------------------------------------------------------------------
81*a58d3d2aSXin Li# Build related configuration options
82*a58d3d2aSXin Li#---------------------------------------------------------------------------
83*a58d3d2aSXin Li
84*a58d3d2aSXin Li# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in
85*a58d3d2aSXin Li# documentation are documented, even if no documentation was available. Private
86*a58d3d2aSXin Li# class members and static file members will be hidden unless the
87*a58d3d2aSXin Li# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
88*a58d3d2aSXin Li# Note: This will also disable the warnings about undocumented members that are
89*a58d3d2aSXin Li# normally produced when WARNINGS is set to YES.
90*a58d3d2aSXin Li# The default value is: NO.
91*a58d3d2aSXin Li
92*a58d3d2aSXin LiEXTRACT_ALL            = YES
93*a58d3d2aSXin Li
94*a58d3d2aSXin Li# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will
95*a58d3d2aSXin Li# be included in the documentation.
96*a58d3d2aSXin Li# The default value is: NO.
97*a58d3d2aSXin Li
98*a58d3d2aSXin LiEXTRACT_PRIVATE        = NO
99*a58d3d2aSXin Li
100*a58d3d2aSXin Li# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
101*a58d3d2aSXin Li# names in lower-case letters. If set to YES, upper-case letters are also
102*a58d3d2aSXin Li# allowed. This is useful if you have classes or files whose names only differ
103*a58d3d2aSXin Li# in case and if your file system supports case sensitive file names. Windows
104*a58d3d2aSXin Li# (including Cygwin) ands Mac users are advised to set this option to NO.
105*a58d3d2aSXin Li# The default value is: system dependent.
106*a58d3d2aSXin Li
107*a58d3d2aSXin LiCASE_SENSE_NAMES       = YES
108*a58d3d2aSXin Li
109*a58d3d2aSXin Li# The ENABLED_SECTIONS tag can be used to enable conditional documentation
110*a58d3d2aSXin Li# sections, marked by \if <section_label> ... \endif and \cond <section_label>
111*a58d3d2aSXin Li# ... \endcond blocks.
112*a58d3d2aSXin Li
113*a58d3d2aSXin LiENABLED_SECTIONS       =
114*a58d3d2aSXin Li
115*a58d3d2aSXin Li#---------------------------------------------------------------------------
116*a58d3d2aSXin Li# Configuration options related to warning and progress messages
117*a58d3d2aSXin Li#---------------------------------------------------------------------------
118*a58d3d2aSXin Li
119*a58d3d2aSXin Li# The QUIET tag can be used to turn on/off the messages that are generated to
120*a58d3d2aSXin Li# standard output by doxygen. If QUIET is set to YES this implies that the
121*a58d3d2aSXin Li# messages are off.
122*a58d3d2aSXin Li# The default value is: NO.
123*a58d3d2aSXin Li
124*a58d3d2aSXin LiQUIET                  = YES
125*a58d3d2aSXin Li
126*a58d3d2aSXin Li# The WARNINGS tag can be used to turn on/off the warning messages that are
127*a58d3d2aSXin Li# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES
128*a58d3d2aSXin Li# this implies that the warnings are on.
129*a58d3d2aSXin Li#
130*a58d3d2aSXin Li# Tip: Turn warnings on while writing the documentation.
131*a58d3d2aSXin Li# The default value is: YES.
132*a58d3d2aSXin Li
133*a58d3d2aSXin LiWARNINGS               = YES
134*a58d3d2aSXin Li
135*a58d3d2aSXin Li#---------------------------------------------------------------------------
136*a58d3d2aSXin Li# Configuration options related to the input files
137*a58d3d2aSXin Li#---------------------------------------------------------------------------
138*a58d3d2aSXin Li
139*a58d3d2aSXin Li# The INPUT tag is used to specify the files and/or directories that contain
140*a58d3d2aSXin Li# documented source files. You may enter file names like myfile.cpp or
141*a58d3d2aSXin Li# directories like /usr/src/myproject. Separate the files or directories with
142*a58d3d2aSXin Li# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
143*a58d3d2aSXin Li# Note: If this tag is empty the current directory is searched.
144*a58d3d2aSXin Li
145*a58d3d2aSXin LiINPUT                  = @top_srcdir@/include/opus.h \
146*a58d3d2aSXin Li                         @top_srcdir@/include/opus_types.h \
147*a58d3d2aSXin Li                         @top_srcdir@/include/opus_defines.h \
148*a58d3d2aSXin Li                         @top_srcdir@/include/opus_multistream.h \
149*a58d3d2aSXin Li                         @top_srcdir@/include/opus_custom.h
150*a58d3d2aSXin Li
151*a58d3d2aSXin Li# The EXCLUDE tag can be used to specify files and/or directories that should be
152*a58d3d2aSXin Li# excluded from the INPUT source files. This way you can easily exclude a
153*a58d3d2aSXin Li# subdirectory from a directory tree whose root is specified with the INPUT tag.
154*a58d3d2aSXin Li#
155*a58d3d2aSXin Li# Note that relative paths are relative to the directory from which doxygen is
156*a58d3d2aSXin Li# run.
157*a58d3d2aSXin Li
158*a58d3d2aSXin LiEXCLUDE                =
159*a58d3d2aSXin Li
160*a58d3d2aSXin Li#---------------------------------------------------------------------------
161*a58d3d2aSXin Li# Configuration options related to the alphabetical class index
162*a58d3d2aSXin Li#---------------------------------------------------------------------------
163*a58d3d2aSXin Li
164*a58d3d2aSXin Li# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
165*a58d3d2aSXin Li# compounds will be generated. Enable this if the project contains a lot of
166*a58d3d2aSXin Li# classes, structs, unions or interfaces.
167*a58d3d2aSXin Li# The default value is: YES.
168*a58d3d2aSXin Li
169*a58d3d2aSXin LiALPHABETICAL_INDEX     = NO
170*a58d3d2aSXin Li
171*a58d3d2aSXin Li#---------------------------------------------------------------------------
172*a58d3d2aSXin Li# Configuration options related to the HTML output
173*a58d3d2aSXin Li#---------------------------------------------------------------------------
174*a58d3d2aSXin Li
175*a58d3d2aSXin Li# The HTML_HEADER tag can be used to specify a user-defined HTML header file for
176*a58d3d2aSXin Li# each generated HTML page. If the tag is left blank doxygen will generate a
177*a58d3d2aSXin Li# standard header.
178*a58d3d2aSXin Li#
179*a58d3d2aSXin Li# To get valid HTML the header file that includes any scripts and style sheets
180*a58d3d2aSXin Li# that doxygen needs, which is dependent on the configuration options used (e.g.
181*a58d3d2aSXin Li# the setting GENERATE_TREEVIEW). It is highly recommended to start with a
182*a58d3d2aSXin Li# default header using
183*a58d3d2aSXin Li# doxygen -w html new_header.html new_footer.html new_stylesheet.css
184*a58d3d2aSXin Li# YourConfigFile
185*a58d3d2aSXin Li# and then modify the file new_header.html. See also section "Doxygen usage"
186*a58d3d2aSXin Li# for information on how to generate the default header that doxygen normally
187*a58d3d2aSXin Li# uses.
188*a58d3d2aSXin Li# Note: The header is subject to change so you typically have to regenerate the
189*a58d3d2aSXin Li# default header when upgrading to a newer version of doxygen. For a description
190*a58d3d2aSXin Li# of the possible markers and block names see the documentation.
191*a58d3d2aSXin Li# This tag requires that the tag GENERATE_HTML is set to YES.
192*a58d3d2aSXin Li
193*a58d3d2aSXin LiHTML_HEADER            = @top_srcdir@/doc/header.html
194*a58d3d2aSXin Li
195*a58d3d2aSXin Li# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
196*a58d3d2aSXin Li# generated HTML page. If the tag is left blank doxygen will generate a standard
197*a58d3d2aSXin Li# footer. See HTML_HEADER for more information on how to generate a default
198*a58d3d2aSXin Li# footer and what special commands can be used inside the footer. See also
199*a58d3d2aSXin Li# section "Doxygen usage" for information on how to generate the default footer
200*a58d3d2aSXin Li# that doxygen normally uses.
201*a58d3d2aSXin Li# This tag requires that the tag GENERATE_HTML is set to YES.
202*a58d3d2aSXin Li
203*a58d3d2aSXin LiHTML_FOOTER            = @top_srcdir@/doc/footer.html
204*a58d3d2aSXin Li
205*a58d3d2aSXin Li# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
206*a58d3d2aSXin Li# sheet that is used by each HTML page. It can be used to fine-tune the look of
207*a58d3d2aSXin Li# the HTML output. If left blank doxygen will generate a default style sheet.
208*a58d3d2aSXin Li# See also section "Doxygen usage" for information on how to generate the style
209*a58d3d2aSXin Li# sheet that doxygen normally uses.
210*a58d3d2aSXin Li# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
211*a58d3d2aSXin Li# it is more robust and this tag (HTML_STYLESHEET) will in the future become
212*a58d3d2aSXin Li# obsolete.
213*a58d3d2aSXin Li# This tag requires that the tag GENERATE_HTML is set to YES.
214*a58d3d2aSXin Li
215*a58d3d2aSXin LiHTML_STYLESHEET        = @top_srcdir@/doc/customdoxygen.css
216*a58d3d2aSXin Li
217*a58d3d2aSXin Li# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
218*a58d3d2aSXin Li# other source files which should be copied to the HTML output directory. Note
219*a58d3d2aSXin Li# that these files will be copied to the base HTML output directory. Use the
220*a58d3d2aSXin Li# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
221*a58d3d2aSXin Li# files. In the HTML_STYLESHEET file, use the file name only. Also note that the
222*a58d3d2aSXin Li# files will be copied as-is; there are no commands or markers available.
223*a58d3d2aSXin Li# This tag requires that the tag GENERATE_HTML is set to YES.
224*a58d3d2aSXin Li
225*a58d3d2aSXin LiHTML_EXTRA_FILES       = @top_srcdir@/doc/opus_logo.svg
226*a58d3d2aSXin Li
227*a58d3d2aSXin Li# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
228*a58d3d2aSXin Li# in the HTML output. For a value of 0 the output will use grayscales only. A
229*a58d3d2aSXin Li# value of 255 will produce the most vivid colors.
230*a58d3d2aSXin Li# Minimum value: 0, maximum value: 255, default value: 100.
231*a58d3d2aSXin Li# This tag requires that the tag GENERATE_HTML is set to YES.
232*a58d3d2aSXin Li
233*a58d3d2aSXin LiHTML_COLORSTYLE_SAT    = 0
234*a58d3d2aSXin Li
235*a58d3d2aSXin Li# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
236*a58d3d2aSXin Li# page will contain the date and time when the page was generated. Setting this
237*a58d3d2aSXin Li# to YES can help to show when doxygen was last run and thus if the
238*a58d3d2aSXin Li# documentation is up to date.
239*a58d3d2aSXin Li# The default value is: NO.
240*a58d3d2aSXin Li# This tag requires that the tag GENERATE_HTML is set to YES.
241*a58d3d2aSXin Li
242*a58d3d2aSXin LiHTML_TIMESTAMP         = YES
243*a58d3d2aSXin Li
244*a58d3d2aSXin Li# When MathJax is enabled you need to specify the location relative to the HTML
245*a58d3d2aSXin Li# output directory using the MATHJAX_RELPATH option. The destination directory
246*a58d3d2aSXin Li# should contain the MathJax.js script. For instance, if the mathjax directory
247*a58d3d2aSXin Li# is located at the same level as the HTML output directory, then
248*a58d3d2aSXin Li# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
249*a58d3d2aSXin Li# Content Delivery Network so you can quickly see the result without installing
250*a58d3d2aSXin Li# MathJax. However, it is strongly recommended to install a local copy of
251*a58d3d2aSXin Li# MathJax from https://www.mathjax.org before deployment.
252*a58d3d2aSXin Li# The default value is: https://cdn.jsdelivr.net/npm/mathjax@2.
253*a58d3d2aSXin Li# This tag requires that the tag USE_MATHJAX is set to YES.
254*a58d3d2aSXin Li
255*a58d3d2aSXin LiMATHJAX_RELPATH        = https://www.mathjax.org/mathjax
256*a58d3d2aSXin Li
257*a58d3d2aSXin Li#---------------------------------------------------------------------------
258*a58d3d2aSXin Li# Configuration options related to the LaTeX output
259*a58d3d2aSXin Li#---------------------------------------------------------------------------
260*a58d3d2aSXin Li
261*a58d3d2aSXin Li# The PAPER_TYPE tag can be used to set the paper type that is used by the
262*a58d3d2aSXin Li# printer.
263*a58d3d2aSXin Li# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
264*a58d3d2aSXin Li# 14 inches) and executive (7.25 x 10.5 inches).
265*a58d3d2aSXin Li# The default value is: a4.
266*a58d3d2aSXin Li# This tag requires that the tag GENERATE_LATEX is set to YES.
267*a58d3d2aSXin Li
268*a58d3d2aSXin LiPAPER_TYPE             = letter
269*a58d3d2aSXin Li
270*a58d3d2aSXin Li#---------------------------------------------------------------------------
271*a58d3d2aSXin Li# Configuration options related to the man page output
272*a58d3d2aSXin Li#---------------------------------------------------------------------------
273*a58d3d2aSXin Li
274*a58d3d2aSXin Li# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for
275*a58d3d2aSXin Li# classes and files.
276*a58d3d2aSXin Li# The default value is: NO.
277*a58d3d2aSXin Li
278*a58d3d2aSXin LiGENERATE_MAN           = YES
279*a58d3d2aSXin Li
280*a58d3d2aSXin Li#---------------------------------------------------------------------------
281*a58d3d2aSXin Li# Configuration options related to the preprocessor
282*a58d3d2aSXin Li#---------------------------------------------------------------------------
283*a58d3d2aSXin Li
284*a58d3d2aSXin Li# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names
285*a58d3d2aSXin Li# in the source code. If set to NO, only conditional compilation will be
286*a58d3d2aSXin Li# performed. Macro expansion can be done in a controlled way by setting
287*a58d3d2aSXin Li# EXPAND_ONLY_PREDEF to YES.
288*a58d3d2aSXin Li# The default value is: NO.
289*a58d3d2aSXin Li# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
290*a58d3d2aSXin Li
291*a58d3d2aSXin LiMACRO_EXPANSION        = YES
292*a58d3d2aSXin Li
293*a58d3d2aSXin Li# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
294*a58d3d2aSXin Li# the macro expansion is limited to the macros specified with the PREDEFINED and
295*a58d3d2aSXin Li# EXPAND_AS_DEFINED tags.
296*a58d3d2aSXin Li# The default value is: NO.
297*a58d3d2aSXin Li# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
298*a58d3d2aSXin Li
299*a58d3d2aSXin LiEXPAND_ONLY_PREDEF     = YES
300*a58d3d2aSXin Li
301*a58d3d2aSXin Li# The INCLUDE_PATH tag can be used to specify one or more directories that
302*a58d3d2aSXin Li# contain include files that are not input files but should be processed by the
303*a58d3d2aSXin Li# preprocessor.
304*a58d3d2aSXin Li# This tag requires that the tag SEARCH_INCLUDES is set to YES.
305*a58d3d2aSXin Li
306*a58d3d2aSXin LiINCLUDE_PATH           =
307*a58d3d2aSXin Li
308*a58d3d2aSXin Li# The PREDEFINED tag can be used to specify one or more macro names that are
309*a58d3d2aSXin Li# defined before the preprocessor is started (similar to the -D option of e.g.
310*a58d3d2aSXin Li# gcc). The argument of the tag is a list of macros of the form: name or
311*a58d3d2aSXin Li# name=definition (no spaces). If the definition and the "=" are omitted, "=1"
312*a58d3d2aSXin Li# is assumed. To prevent a macro definition from being undefined via #undef or
313*a58d3d2aSXin Li# recursively expanded use the := operator instead of the = operator.
314*a58d3d2aSXin Li# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
315*a58d3d2aSXin Li
316*a58d3d2aSXin LiPREDEFINED             = OPUS_EXPORT= \
317*a58d3d2aSXin Li                         OPUS_CUSTOM_EXPORT= \
318*a58d3d2aSXin Li                         OPUS_CUSTOM_EXPORT_STATIC= \
319*a58d3d2aSXin Li                         OPUS_WARN_UNUSED_RESULT= \
320*a58d3d2aSXin Li                         OPUS_ARG_NONNULL(_x)=
321*a58d3d2aSXin Li
322*a58d3d2aSXin Li#---------------------------------------------------------------------------
323*a58d3d2aSXin Li# Configuration options related to the dot tool
324*a58d3d2aSXin Li#---------------------------------------------------------------------------
325*a58d3d2aSXin Li
326*a58d3d2aSXin Li# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
327*a58d3d2aSXin Li# available from the path. This tool is part of Graphviz (see:
328*a58d3d2aSXin Li# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
329*a58d3d2aSXin Li# Bell Labs. The other options in this section have no effect if this option is
330*a58d3d2aSXin Li# set to NO
331*a58d3d2aSXin Li# The default value is: NO.
332*a58d3d2aSXin Li
333*a58d3d2aSXin Li# Debian defaults to YES here, while Fedora and Homebrew default to NO.
334*a58d3d2aSXin Li# So we set this based on whether the graphviz package is available at
335*a58d3d2aSXin Li# configure time.
336*a58d3d2aSXin Li#
337*a58d3d2aSXin LiHAVE_DOT               = @HAVE_DOT@
338*a58d3d2aSXin Li
339*a58d3d2aSXin Li# move docs to the correct place
340*a58d3d2aSXin LiOUTPUT_DIRECTORY       = @top_builddir@/doc
341