From 7d50f3df0a12783fb4f943d24e7900e9dced3eda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beat=20K=C3=BCng?= Date: Fri, 5 May 2017 11:51:34 +0200 Subject: [PATCH] Makefile: add module_documentation target --- Makefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 1a827258b7..b9651ae783 100644 --- a/Makefile +++ b/Makefile @@ -241,16 +241,19 @@ check_%: # Documentation # -------------------------------------------------------------------- -.PHONY: parameters_metadata airframe_metadata px4_metadata +.PHONY: parameters_metadata airframe_metadata px4_metadata module_documentation parameters_metadata: posix_sitl_default @python $(SRC_DIR)/Tools/px_process_params.py -s $(SRC_DIR)/src --markdown airframe_metadata: - @python ${SRC_DIR}/Tools/px_process_airframes.py -v -a ${SRC_DIR}/ROMFS/px4fmu_common/init.d --markdown - @python ${SRC_DIR}/Tools/px_process_airframes.py -v -a ${SRC_DIR}/ROMFS/px4fmu_common/init.d --xml + @python $(SRC_DIR)/Tools/px_process_airframes.py -v -a $(SRC_DIR)/ROMFS/px4fmu_common/init.d --markdown + @python $(SRC_DIR)/Tools/px_process_airframes.py -v -a $(SRC_DIR)/ROMFS/px4fmu_common/init.d --xml -px4_metadata: parameters_metadata airframe_metadata +module_documentation: + @python $(SRC_DIR)/Tools/px_process_module_doc.py -v --markdown $(SRC_DIR)/modules --src-path $(SRC_DIR)/src + +px4_metadata: parameters_metadata airframe_metadata module_documentation # S3 upload helpers # --------------------------------------------------------------------