From 2af6f62ccff804759f7b062f30a9e19194337ed5 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Mon, 10 Apr 2023 11:59:33 -0400 Subject: [PATCH] [UPD] makefile: parallel make doc --- Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 339717b..da41adb 100644 --- a/Makefile +++ b/Makefile @@ -1106,11 +1106,12 @@ stat_module_evolution_per_year_OCA: # documentation all .PHONY: doc doc: - ./script/make.sh doc_dev - ./script/make.sh doc_migration - ./script/make.sh doc_test - ./script/make.sh doc_user - ./script/make.sh doc_markdown +# ./script/make.sh doc_dev +# ./script/make.sh doc_migration +# ./script/make.sh doc_test +# ./script/make.sh doc_user +# ./script/make.sh doc_markdown + parallel ::: "./script/make.sh doc_dev" "./script/make.sh doc_migration" "./script/make.sh doc_test" "./script/make.sh doc_user" "./script/make.sh doc_markdown" # documentation clean all .PHONY: doc_clean