diff options
Diffstat (limited to 'doxygen/Makefile')
-rw-r--r-- | doxygen/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doxygen/Makefile b/doxygen/Makefile new file mode 100644 index 0000000..c58a5d3 --- /dev/null +++ b/doxygen/Makefile @@ -0,0 +1,8 @@ +DOXYGEN_RUN_PATH ?= $(shell pwd) +DOXYGEN_CONFIG_PATH ?= $(shell pwd) + +document: + cd $(DOXYGEN_RUN_PATH) && \ + PATH='$(DOXYGEN_CONFIG_PATH):$(PATH)' \ + config_path=$(DOXYGEN_CONFIG_PATH) \ + doxygen $(DOXYGEN_CONFIG_PATH)/config |