blob: 2038681213e3df34238ca6d51002ab4b819cc6c6 [file] [log] [blame]
Sam Elliottb6745d32020-04-08 21:46:28 +01001#---------------------------------------------------------------------------
2# Project related configuration options
3#---------------------------------------------------------------------------
4
5PROJECT_NAME = "Software APIs"
6PROJECT_LOGO = "$(SRCTREE_TOP)/doc/opentitan-logo.png"
7
8OUTPUT_DIRECTORY = "$(DOXYGEN_OUT)"
9ALLOW_UNICODE_NAMES = YES
10
11JAVADOC_AUTOBRIEF = YES
12
13STRIP_FROM_INC_PATH = "$(SRCTREE_TOP)"
14
15TAB_SIZE = 2
16
17OPTIMIZE_OUTPUT_FOR_C = YES
18
19# We use .c and .h for C
20EXTENSION_MAPPING = h=C c=C
21
22INLINE_SIMPLE_STRUCTS = YES
23
24# This doesn't work for enums
25TYPEDEF_HIDES_STRUCT = NO
26
27#---------------------------------------------------------------------------
28# Build related configuration options
29#---------------------------------------------------------------------------
30
31EXTRACT_ANON_NSPACES = YES
32HIDE_IN_BODY_DOCS = YES
33INTERNAL_DOCS = NO
34CASE_SENSE_NAMES = NO
35
36FORCE_LOCAL_INCLUDES = NO
37STRIP_FROM_INC_PATH = "$(SRCTREE_TOP)" \
38 "$(SRCTREE_TOP)/sw/device/lib/base/freestanding"
39
40GENERATE_TODOLIST = NO
41GENERATE_TESTLIST = NO
42GENERATE_BUGLIST = NO
43
44SHOW_USED_FILES = NO
45SHOW_NAMESPACES = NO
46
47FILE_VERSION_FILTER = "git log --format='%h' -1 --"
48
49LAYOUT_FILE = "$(SRCTREE_TOP)/site/docs/doxygen/layout.xml"
50
51#---------------------------------------------------------------------------
52# Configuration options related to warning and progress messages
53#---------------------------------------------------------------------------
54
55QUIET = YES
56WARN_LOGFILE = "$(DOXYGEN_OUT)/doxygen_warnings.log"
57
58#---------------------------------------------------------------------------
59# Configuration options related to the input files
60#---------------------------------------------------------------------------
61
62# Absolute path using $(SRCTREE_TOP)
63INPUT = "$(SRCTREE_TOP)/sw" \
64 "$(SRCTREE_TOP)/site/docs/doxygen/main_page.md"
65
66USE_MDFILE_AS_MAINPAGE = "$(SRCTREE_TOP)/site/docs/doxygen/main_page.md"
67
68FILE_PATTERNS = *.h \
69 *.c \
70 *.cc
71
72RECURSIVE = YES
73
74# Absolute paths using $(SRCTREE_TOP)
75EXCLUDE = "$(SRCTREE_TOP)/sw/vendor" \
76 "$(SRCTREE_TOP)/sw/device/benchmarks" \
77 "$(SRCTREE_TOP)/sw/host/vendor"
78
79EXCLUDE_SYMLINKS = YES
80
81# Absolute path using $(SRCTREE_TOP)
82IMAGE_PATH = "$(SRCTREE_TOP)/site/docs/doxygen"
83
84#---------------------------------------------------------------------------
85# Configuration options related to source browsing
86#---------------------------------------------------------------------------
87
88SOURCE_BROWSER = YES
89STRIP_CODE_COMMENTS = NO
90
91REFERENCES_LINK_SOURCE = NO
92
93SOURCE_TOOLTIPS = NO
94
95#---------------------------------------------------------------------------
96# Configuration options related to the alphabetical class index
97#---------------------------------------------------------------------------
98
99COLS_IN_ALPHA_INDEX = 2
100
101#---------------------------------------------------------------------------
102# Configuration options related to the HTML output
103#---------------------------------------------------------------------------
104
105GENERATE_HTML = YES
106
107# Relative to `OUTPUT_DIRECTORY`
108HTML_OUTPUT = "public-api/sw/apis"
109
110# Absolute paths using $(SRCTREE_TOP)
111HTML_HEADER = "$(SRCTREE_TOP)/site/docs/doxygen/header.html"
112HTML_FOOTER = "$(SRCTREE_TOP)/site/docs/doxygen/footer.html"
113
114HTML_COLORSTYLE_HUE = 271
115
116HTML_TIMESTAMP = NO
117
118GENERATE_DOCSET = NO
119GENERATE_HTMLHELP = NO
120GENERATE_QHP = NO
121GENERATE_ECLIPSEHELP = NO
122
123ENUM_VALUES_PER_LINE = 1
124
125SEARCHENGINE = NO
126
127#---------------------------------------------------------------------------
128# Configuration options related to the LaTeX output
129#---------------------------------------------------------------------------
130
131GENERATE_LATEX = NO
132
133#---------------------------------------------------------------------------
134# Configuration options related to the RTF output
135#---------------------------------------------------------------------------
136
137GENERATE_RTF = NO
138
139#---------------------------------------------------------------------------
140# Configuration options related to the man page output
141#---------------------------------------------------------------------------
142
143GENERATE_MAN = NO
144
145#---------------------------------------------------------------------------
146# Configuration options related to the XML output
147#---------------------------------------------------------------------------
148
149GENERATE_XML = YES
150
151# Relative to `OUTPUT_DIRECTORY`
152XML_OUTPUT = "api-xml"
153
154XML_PROGRAMLISTING = NO
155
156#---------------------------------------------------------------------------
157# Configuration options related to the DOCBOOK output
158#---------------------------------------------------------------------------
159
160GENERATE_DOCBOOK = NO
161
162#---------------------------------------------------------------------------
163# Configuration options for the AutoGen Definitions output
164#---------------------------------------------------------------------------
165
166GENERATE_AUTOGEN_DEF = NO
167
168#---------------------------------------------------------------------------
169# Configuration options related to the Perl module output
170#---------------------------------------------------------------------------
171
172GENERATE_PERLMOD = NO
173
174#---------------------------------------------------------------------------
175# Configuration options related to the preprocessor
176#---------------------------------------------------------------------------
177
178INCLUDE_PATH = "$(SRCTREE_TOP)/sw/device/lib/base/freestanding"
179
180INCLUDE_FILE_PATTERNS = *.h
181
182PREDEFINED =
183EXPAND_AS_DEFINED =
184
185SKIP_FUNCTION_MACROS = YES
186
187#---------------------------------------------------------------------------
188# Configuration options related to the dot tool
189#---------------------------------------------------------------------------
190
191CLASS_DIAGRAMS = NO
192
193HAVE_DOT = NO
194CLASS_GRAPH = NO
195COLLABORATION_GRAPH = NO
196GROUP_GRAPHS = NO
197INCLUDE_GRAPH = NO
198INCLUDED_BY_GRAPH = NO
199GRAPHICAL_HIERARCHY = NO
200DIRECTORY_GRAPH = NO