msgpack-erlang/Makefile

33 lines
411 B
Makefile
Raw Permalink Normal View History

2015-12-08 06:13:55 +00:00
.PHONY: compile xref eunit clean check-all make deps test
2011-05-01 17:31:12 +00:00
2016-01-10 03:12:34 +00:00
REBAR=rebar3
all: compile
2011-05-01 23:24:49 +00:00
# for busy typos
m: all
ma: all
mak: all
make: all
compile:
@$(REBAR) compile
2015-12-08 03:52:39 +00:00
xref:
@$(REBAR) xref
2015-12-08 03:52:39 +00:00
test:
@$(REBAR) as test eunit eqc
clean:
@$(REBAR) clean
2011-04-26 09:40:35 +00:00
2015-12-08 06:13:55 +00:00
dialyzer:
@$(REBAR) dialyzer
2011-04-26 09:40:35 +00:00
check-all: test xref dialyzer
2011-05-05 13:59:23 +00:00
crosslang:
2011-05-05 14:26:33 +00:00
@echo "do ERL_LIBS=../ before you make crosslang or fail"
2011-05-05 13:59:23 +00:00
cd test && make crosslang