mirror of
https://github.com/valitydev/msgpack-erlang.git
synced 2024-11-06 08:45:19 +00:00
35 lines
480 B
Makefile
35 lines
480 B
Makefile
.PHONY: compile xref eunit clean doc check make
|
|
|
|
all: compile
|
|
|
|
# for busy typos
|
|
m: all
|
|
ma: all
|
|
mak: all
|
|
make: all
|
|
|
|
compile:
|
|
@./rebar compile
|
|
|
|
xref:
|
|
@./rebar xref
|
|
|
|
eunit:
|
|
@./rebar skip_deps=true eunit
|
|
|
|
clean:
|
|
@./rebar clean
|
|
|
|
doc:
|
|
@./rebar doc
|
|
|
|
check: compile xref
|
|
# @echo "you need ./rebar build-plt before make check"
|
|
# @./rebar build-plt
|
|
@./rebar check-plt
|
|
@./rebar dialyze
|
|
|
|
crosslang:
|
|
@echo "do ERL_LIBS=../ before you make crosslang or fail"
|
|
cd test && make crosslang
|