mirror of
https://github.com/valitydev/msgpack-erlang.git
synced 2024-11-06 00:35:24 +00:00
33 lines
411 B
Makefile
33 lines
411 B
Makefile
.PHONY: compile xref eunit clean check-all make deps test
|
|
|
|
REBAR=rebar3
|
|
|
|
all: compile
|
|
|
|
# for busy typos
|
|
m: all
|
|
ma: all
|
|
mak: all
|
|
make: all
|
|
|
|
compile:
|
|
@$(REBAR) compile
|
|
|
|
xref:
|
|
@$(REBAR) xref
|
|
|
|
test:
|
|
@$(REBAR) as test eunit eqc
|
|
|
|
clean:
|
|
@$(REBAR) clean
|
|
|
|
dialyzer:
|
|
@$(REBAR) dialyzer
|
|
|
|
check-all: test xref dialyzer
|
|
|
|
crosslang:
|
|
@echo "do ERL_LIBS=../ before you make crosslang or fail"
|
|
cd test && make crosslang
|