diff options
Diffstat (limited to '.doxygen/Makefile')
-rw-r--r-- | .doxygen/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.doxygen/Makefile b/.doxygen/Makefile new file mode 100644 index 0000000..3a05b2b --- /dev/null +++ b/.doxygen/Makefile @@ -0,0 +1,12 @@ + +.PHONY: document + +document: + cd $(DOXYGEN_CONFIG_PATH) && \ + PATH='.:$(PATH)' \ + DOXYGEN_INPUT_DIRS='$(DOXYGEN_INPUT_DIRS) ./' \ + DOXYGEN_OUTPUT_DIR='$(DOXYGEN_OUTPUT_DIR)' \ + doxygen $(DOXYGEN_CONFIG_FILE) + +document_clean: + rm -rf $(DOXYGEN_OUTPUT_DIR) |