aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-09-26 16:27:19 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-09-26 17:59:32 +0300
commit00393a40e5fdddd99c39106a0082d5f4b9b0315c (patch)
tree8a5580f7a26a548c5f53a63cb1469490b67da341 /Makefile
parentworkflows/ci: use default clang-format (diff)
downloadwinapi-utf8-00393a40e5fdddd99c39106a0082d5f4b9b0315c.tar.gz
winapi-utf8-00393a40e5fdddd99c39106a0082d5f4b9b0315c.zip
add Doxygen docs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 61f1cc1..163436d 100644
--- a/Makefile
+++ b/Makefile
@@ -83,6 +83,15 @@ install: build
test:
cd -- '$(call escape,$(cmake_dir))' && ctest -C '$(call escape,$(CONFIGURATION))' --verbose
+xdg-open := $(shell command -v xdg-open 2> /dev/null)
+
+.PHONY: docs
+docs:
+ cmake --build '$(call escape,$(cmake_dir))' --target docs
+ifdef xdg-open
+ xdg-open '$(call escape,$(cmake_dir))/html/index.html'
+endif
+
clang-tidy := run-clang-tidy
ifeq (1,$(shell test -e /usr/share/clang/run-clang-tidy.py && echo 1))
clang-tidy := /usr/share/clang/run-clang-tidy.py