From 41c3e2cfcdb107416955d86219ca02a1c54d9b29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Christian=20Langfj=C3=A6ran?= Date: Mon, 29 Apr 2019 13:38:36 +0200 Subject: [PATCH] Add publish as a make goal --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 6d5944f..2c262bd 100644 --- a/Makefile +++ b/Makefile @@ -22,4 +22,8 @@ test: ## Call the 'test' target on all sub-modules .PHONY: dev-all dev-all: lint build test +.PHONY: publish +publish: ## Call the 'publish' target on all sub-modules + $(foreach mod,$(MODULES),($(MAKE) -C $(mod) $@) || exit $$?;) + include help.mk \ No newline at end of file