1# Copyright (C) 2014-2023 Free Software Foundation, Inc. 2 3# Doxygen file for GDB internal API. 4# This file is part of GDB. 5 6# This program is free software; you can redistribute it and/or modify 7# it under the terms of the GNU General Public License as published by 8# the Free Software Foundation; either version 3 of the License, or 9# (at your option) any later version. 10# 11# This program is distributed in the hope that it will be useful, 12# but WITHOUT ANY WARRANTY; without even the implied warranty of 13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14# GNU General Public License for more details. 15# 16# You should have received a copy of the GNU General Public License 17# along with this program. If not, see <http://www.gnu.org/licenses/>. 18 19@INCLUDE = Doxyfile-base 20 21PROJECT_NAME = "GDB (API)" 22 23# Enumerate the files to process. In general these should be header 24# files with definitions of general interest, rather than ones that 25# are specific to a single target or configuration. (The cross 26# reference pages are available to developers wanting a list of 27# everything.) 28 29INPUT = @srcdir@/../defs.h \ 30 @srcdir@/../gdbtypes.h \ 31 @srcdir@/../minsyms.h \ 32 @srcdir@/../utils.h 33 34HTML_OUTPUT = ./doxy/gdb-api 35 36# Suppress classes/structs local to source files, they are unlikely 37# to be of general API interest. 38 39EXTRACT_LOCAL_CLASSES = NO 40