mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-05-29 16:39:05 -04:00
.. | ||
html | ||
sphinx | ||
Makefile | ||
mee-spec.md | ||
README.md |
Documentation Generation
Requirements
You'll need the following software:
Ubuntu
You can install the required software on Ubuntu with the following:
sudo apt install doxygen python3-sphinx python3-breathe graphviz python3-pydot
sudo apt install texlive-full latexmk
The second line can be omitted if you don't intend to build the PDF.
MacOS
You can install the required software on MacOS with the following:
brew install doxygen sphinx-doc graphviz
brew cask install mactex
The second line can be omitted if you don't intend to build the PDF.
Building the Docs
You can generate both the HTML and PDF documentation with
make
Or only the HTML or PDF docs using
make html
or
make pdf
You can clean the build files and outputs with
make clean