From 71d077b492c0f196284f5e7000785ceadbe65ecb Mon Sep 17 00:00:00 2001 From: gravel Date: Tue, 6 Feb 2024 10:49:28 +0000 Subject: [PATCH] dev: add one-off doxygen goal to Makefile --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 690f8b0..a64179f 100644 --- a/Makefile +++ b/Makefile @@ -72,9 +72,14 @@ lan-server: open: nohup xdg-open "http://localhost:$(PORT)" >/dev/null 2>/dev/null + +# Update Doxygen documentation. +docs-once: + doxygen -q + # Update Doxygen documentation on file change. docs: - $(MAKE) WATCHCMD="doxygen -q" watchdog |& sed "s:`realpath .`::" + $(MAKE) WATCHCMD="$(MAKE) docs-once" watchdog |& sed "s:`realpath .`::" # Update Doxygen documentation on change and show in browser. dev-docs: PORT = 8082