diff options
author | Martin Roth <gaumless@gmail.com> | 2022-05-09 18:48:24 -0600 |
---|---|---|
committer | Martin L Roth <gaumless@tutanota.com> | 2022-05-28 01:24:51 +0000 |
commit | 619086d1056c73278fdeb0967421048e8e755bba (patch) | |
tree | 736f39656a489edf47b8be0a44fbcfe482210cff /Makefile | |
parent | 471eda5ae183b7c2add94529e9b8fc627a155392 (diff) |
Treewide: Remove doxygen config files and targets
In the last coreboot leadership meeting, the doxygen documentation was
declared to be dead. Remove it.
Doxygen style comments can still be added to files, and we may generate
doxygen based documentation, but it won't be for the entire project, but
instead just for those individual areas where it is being maintained.
Signed-off-by: Martin Roth <gaumless@gmail.com>
Change-Id: I8983a20793786a18d2331763660842fea836aa2a
Reviewed-on: https://review.coreboot.org/c/coreboot/+/64228
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 29 |
1 files changed, 2 insertions, 27 deletions
@@ -64,9 +64,6 @@ HOSTCXXFLAGS := -g PREPROCESS_ONLY := -E -P -x assembler-with-cpp -undef -I . -DOXYGEN := doxygen -DOXYGEN_OUTPUT_DIR := doxygen - export $(COREBOOT_EXPORTS) all: real-all @@ -77,8 +74,6 @@ help_coreboot help:: @echo ' all - Build coreboot' @echo ' clean - Remove coreboot build artifacts' @echo ' distclean - Remove build artifacts and config files' - @echo ' doxygen - Build doxygen documentation for coreboot' - @echo ' doxyplatform - Build doxygen documentation for the current platform' @echo ' sphinx - Build sphinx documentation for coreboot' @echo ' sphinx-lint - Build sphinx documenttion for coreboot with warnings as errors' @echo ' filelist - Show files used in current build' @@ -450,27 +445,7 @@ sphinx: sphinx-lint: $(MAKE) SPHINXOPTS=-W -C Documentation -f Makefile.sphinx html -doxy: doxygen -doxygen: - $(DOXYGEN) Documentation/Doxyfile.coreboot - -doxygen_simple: - $(DOXYGEN) Documentation/Doxyfile.coreboot_simple - -doxyplatform doxygen_platform: $(obj)/project_filelist.txt - echo - echo "Building doxygen documentation for $(CONFIG_MAINBOARD_PART_NUMBER)" - export DOXYGEN_OUTPUT_DIR="$$( echo $(DOXYGEN_OUTPUT_DIR)/$(call strip_quotes, $(CONFIG_MAINBOARD_VENDOR))_$(call strip_quotes, $(CONFIG_MAINBOARD_PART_NUMBER)) | sed 's|[^A-Za-z0-9/]|_|g' )"; \ - mkdir -p "$$DOXYGEN_OUTPUT_DIR"; \ - export DOXYFILES="$$(cat $(obj)/project_filelist.txt | grep -v '\.ld$$' | sed 's/\.aml/\.dsl/' | tr '\n' ' ')"; \ - export DOXYGEN_PLATFORM="$(call strip_quotes, $(CONFIG_MAINBOARD_DIR)) \($(call strip_quotes, $(CONFIG_MAINBOARD_PART_NUMBER))\) version $(KERNELVERSION)"; \ - $(DOXYGEN) Documentation/doxygen/Doxyfile.coreboot_platform - -doxyclean: doxygen-clean -doxygen-clean: - rm -rf $(DOXYGEN_OUTPUT_DIR) - -clean-for-update: doxygen-clean +clean-for-update: rm -rf $(obj) .xcompile clean: clean-for-update clean-utils clean-payloads @@ -496,5 +471,5 @@ distclean: clean clean-ctags clean-cscope distclean-payloads distclean-utils rm -rf coreboot-builds coreboot-builds-chromeos rm -f abuild*.xml junit.xml* util/lint/junit.xml -.PHONY: $(PHONY) clean clean-for-update clean-cscope cscope distclean doxygen doxy doxygen_simple sphinx sphinx-lint +.PHONY: $(PHONY) clean clean-for-update clean-cscope cscope distclean sphinx sphinx-lint .PHONY: ctags-project cscope-project clean-ctags |