Add publish as a make goal

This commit is contained in:
Ole Christian Langfjæran
2019-04-29 13:38:36 +02:00
parent ec10d20b4b
commit 41c3e2cfcd

View File

@@ -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