forked from Archive/PX4-Autopilot
Makefile add doxygen helper
This commit is contained in:
parent
00e09524f7
commit
553d68b80f
7
Makefile
7
Makefile
|
@ -250,7 +250,7 @@ coverity_scan: posix_sitl_default
|
|||
|
||||
# Documentation
|
||||
# --------------------------------------------------------------------
|
||||
.PHONY: parameters_metadata airframe_metadata module_documentation px4_metadata
|
||||
.PHONY: parameters_metadata airframe_metadata module_documentation px4_metadata doxygen
|
||||
|
||||
parameters_metadata:
|
||||
@python $(SRC_DIR)/src/lib/parameters/px_process_params.py -s `find $(SRC_DIR)/src -maxdepth 4 -type d` --inject-xml $(SRC_DIR)/src/lib/parameters/parameters_injected.xml --markdown
|
||||
|
@ -265,6 +265,11 @@ module_documentation:
|
|||
|
||||
px4_metadata: parameters_metadata airframe_metadata module_documentation
|
||||
|
||||
doxygen:
|
||||
@mkdir -p $(SRC_DIR)/build/doxygen
|
||||
@cd $(SRC_DIR)/build/doxygen && cmake $(SRC_DIR) $(CMAKE_ARGS) -G"$(PX4_CMAKE_GENERATOR)" -DCONFIG=posix_sitl_default -DBUILD_DOXYGEN=ON
|
||||
@$(PX4_MAKE) -C $(SRC_DIR)/build/doxygen
|
||||
|
||||
# Astyle
|
||||
# --------------------------------------------------------------------
|
||||
.PHONY: check_format format
|
||||
|
|
Loading…
Reference in New Issue