msgpack-erlang/Makefile

35 lines
370 B
Makefile
Raw Normal View History

2011-05-01 23:24:49 +00:00
.PHONY: compile xref eunit clean doc check make
2011-05-01 17:31:12 +00:00
all: compile xref eunit
2011-05-01 23:24:49 +00:00
# for busy typos
m: all
ma: all
mak: all
make: all
compile:
@./rebar compile
xref:
@./rebar xref
eunit:
@./rebar eunit
clean:
@./rebar clean
2011-04-26 09:40:35 +00:00
doc:
@./rebar doc
check:
2011-05-02 08:23:51 +00:00
@./rebar build_plt
2011-04-26 09:40:35 +00:00
@./rebar check_plt
2011-05-05 13:59:23 +00:00
@./rebar analyze
crosslang:
export ERL_LIBS=../
cd test && make crosslang