From f363bea960b9d599c678313982c1dd41e5207e8d Mon Sep 17 00:00:00 2001 From: Zaiming Shi Date: Wed, 24 Mar 2021 21:44:41 +0100 Subject: [PATCH] chore(Makefile): Add make run and make quickrun --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index 38251043c..a84a05322 100644 --- a/Makefile +++ b/Makefile @@ -131,4 +131,11 @@ $1: $(subst -pkg,,$1)-zip $1-tar endef $(foreach pt,$(PKG_PROFILES),$(eval $(call gen-pkg-target,$(pt)))) +.PHONY: run +run: $(PROFILE) quickrun + +.PHONY: quickrun +quickrun: + ./_build/$(PROFILE)/rel/emqx/bin/emqx console + include docker.mk