chore(Makefile): Add make run and make quickrun
This commit is contained in:
parent
d4c6b6b926
commit
f363bea960
7
Makefile
7
Makefile
|
@ -131,4 +131,11 @@ $1: $(subst -pkg,,$1)-zip $1-tar
|
||||||
endef
|
endef
|
||||||
$(foreach pt,$(PKG_PROFILES),$(eval $(call gen-pkg-target,$(pt))))
|
$(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
|
include docker.mk
|
||||||
|
|
Loading…
Reference in New Issue