From 967768d0a705662b3fb55885f3f2c0f74df9c4ce Mon Sep 17 00:00:00 2001 From: silverweed Date: Mon, 20 Jul 2026 15:18:13 +0200 Subject: [PATCH] [doc] Improvements to doxygen `make preview` - add htmlfooter.html to gitignore - remove Doxyfile_INPUT after running doxygen - add a clickable link to index.html in the output message --- documentation/doxygen/.gitignore | 1 + documentation/doxygen/Makefile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 documentation/doxygen/.gitignore diff --git a/documentation/doxygen/.gitignore b/documentation/doxygen/.gitignore new file mode 100644 index 0000000000000..c90a893af5c47 --- /dev/null +++ b/documentation/doxygen/.gitignore @@ -0,0 +1 @@ +htmlfooter.html diff --git a/documentation/doxygen/Makefile b/documentation/doxygen/Makefile index 7b22aadb1a11a..58574c6528827 100644 --- a/documentation/doxygen/Makefile +++ b/documentation/doxygen/Makefile @@ -46,7 +46,8 @@ preview: export DOXYGEN_INPUT_FILTER := preview: htmlfooter echo "INPUT = ./mainpage.md ../.." > Doxyfile_INPUT doxygen Doxyfile - echo "Your preview is in $(DOXYGEN_OUTPUT_DIRECTORY)" + rm -f Doxyfile_INPUT + echo "Your preview is in $(DOXYGEN_OUTPUT_DIRECTORY). Browse it at file://$(DOXYGEN_OUTPUT_DIRECTORY)/html/index.html" filter: `root-config --cxx` -o filter filter.cxx -std=c++14 -O2