msgpack-erlang/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