blob: c9558e022619950f848b3280c38ef20c1f077249 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Doxyfile 1.5.2
# $FreeBSD$
#---------------------------------------------------------------------------
# Project related configuration options
#---------------------------------------------------------------------------
PROJECT_NAME = "FreeBSD kernel KBD device code"
OUTPUT_DIRECTORY = $(DOXYGEN_DEST_PATH)/dev_kbd/
EXTRACT_ALL = YES # for undocumented src, no warnings enabled
#---------------------------------------------------------------------------
# configuration options related to the input files
#---------------------------------------------------------------------------
INPUT = $(DOXYGEN_SRC_PATH)/dev/kbd/ \
$(DOXYGEN_SRC_PATH)/$(DOXYGEN_TARGET_ARCH)/kbd/ \
$(NOTREVIEWED)
GENERATE_TAGFILE = dev_kbd/dev_kbd.tag
@INCLUDE_PATH = $(DOXYGEN_INCLUDE_PATH)
@INCLUDE = common-Doxyfile
|