| 1234567891011121314151617181920212223242526272829303132333435 |
- ## shallow clone for speed
- REBAR_GIT_CLONE_OPTIONS += --depth 1
- export REBAR_GIT_CLONE_OPTIONS
- REBAR = rebar3
- all: compile
- compile:
- $(REBAR) compile
- clean: distclean
- ct: compile
- $(REBAR) as test ct -v
- eunit: compile
- $(REBAR) as test eunit
- xref:
- $(REBAR) xref
- distclean:
- @rm -rf _build
- @rm -f data/app.*.config data/vm.*.args rebar.lock
- CUTTLEFISH_SCRIPT = _build/default/lib/cuttlefish/cuttlefish
- $(CUTTLEFISH_SCRIPT):
- @${REBAR} get-deps
- @if [ ! -f cuttlefish ]; then make -C _build/default/lib/cuttlefish; fi
- app.config: $(CUTTLEFISH_SCRIPT) etc/emqx_mini_plugin.conf
- $(verbose) $(CUTTLEFISH_SCRIPT) -l info -e etc/ -c etc/emqx_mini_plugin.conf -i priv/emqx_mini_plugin.schema -d data
|