cowboy_kitten/Makefile
2019-09-26 16:22:04 +03:00

29 lines
315 B
Makefile

REBAR := $(shell which rebar3 2>/dev/null || which ./rebar3)
all: compile
compile:
$(REBAR) compile
rebar-update:
$(REBAR) update
test:
$(REBAR) eunit
xref:
$(REBAR) as test xref
clean:
$(REBAR) clean
distclean:
$(REBAR) clean -a
rm -rfv _build
dialyze:
$(REBAR) as test dialyzer
lint:
elvis rock