Move kernel doxygen stuff to kernel/
This commit is contained in:
11
docs.mk
11
docs.mk
@@ -1,8 +1,7 @@
|
||||
docs:
|
||||
doxygen
|
||||
doxygen_kernel:
|
||||
make -C kernel platform=$(platform) doxygen
|
||||
|
||||
docs: doxygen_kernel
|
||||
mkdocs build
|
||||
|
||||
doxygen:
|
||||
doxygen
|
||||
|
||||
.PHONY: docs doxygen
|
||||
.PHONY: docs doxygen_kernel
|
||||
|
||||
@@ -4,4 +4,4 @@ MOP3 is a hobby OS project of mine ;).
|
||||
|
||||
# Kernel documentation
|
||||
|
||||
- [Doxygen docs](doxygen/html/index.html)
|
||||
- [Doxygen docs](kernel/doxygen/html/index.html)
|
||||
|
||||
@@ -74,7 +74,7 @@ PROJECT_ICON =
|
||||
# entered, it will be relative to the location where Doxygen was started. If
|
||||
# left blank the current directory will be used.
|
||||
|
||||
OUTPUT_DIRECTORY = docs/doxygen
|
||||
OUTPUT_DIRECTORY = ../docs/kernel/doxygen
|
||||
|
||||
# If the CREATE_SUBDIRS tag is set to YES then Doxygen will create up to 4096
|
||||
# sub-directories (in 2 levels) under the output directory of each output format
|
||||
@@ -1005,7 +1005,7 @@ WARN_LOGFILE =
|
||||
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
|
||||
# Note: If this tag is empty the current directory is searched.
|
||||
|
||||
INPUT = kernel
|
||||
INPUT = .
|
||||
|
||||
# This tag can be used to specify the character encoding of the source files
|
||||
# that Doxygen parses. Internally Doxygen uses the UTF-8 encoding. Doxygen uses
|
||||
@@ -1109,12 +1109,12 @@ RECURSIVE = YES
|
||||
# Note that relative paths are relative to the directory from which Doxygen is
|
||||
# run.
|
||||
|
||||
EXCLUDE = kernel/uACPI \
|
||||
kernel/build \
|
||||
kernel/limine/limine.h \
|
||||
kernel/libk/printf.c \
|
||||
kernel/libk/printf.h \
|
||||
kernel/amd64/msr-index.h
|
||||
EXCLUDE = uACPI \
|
||||
build \
|
||||
limine/limine.h \
|
||||
libk/printf.c \
|
||||
libk/printf.h \
|
||||
amd64/msr-index.h
|
||||
|
||||
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
|
||||
# directories that are symbolic links (a Unix file system feature) are excluded
|
||||
@@ -1474,7 +1474,7 @@ HTML_STYLESHEET =
|
||||
# documentation.
|
||||
# This tag requires that the tag GENERATE_HTML is set to YES.
|
||||
|
||||
HTML_EXTRA_STYLESHEET = doxytheme/doxygen-awesome.css
|
||||
HTML_EXTRA_STYLESHEET = ../doxytheme/doxygen-awesome.css
|
||||
|
||||
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
|
||||
# other source files which should be copied to the HTML output directory. Note
|
||||
@@ -32,4 +32,7 @@ format:
|
||||
':!uACPI/tests/**' \
|
||||
':!libk/printf*')
|
||||
|
||||
.PHONY: all clean format
|
||||
doxygen:
|
||||
doxygen
|
||||
|
||||
.PHONY: all clean format doxygen
|
||||
|
||||
Reference in New Issue
Block a user