mirror of
https://github.com/valitydev/msgpack-erlang.git
synced 2024-11-06 08:45:19 +00:00
29 lines
309 B
Makefile
29 lines
309 B
Makefile
.PHONY: compile xref eunit clean doc check make
|
|
|
|
all: compile xref eunit
|
|
|
|
# for busy typos
|
|
m: all
|
|
ma: all
|
|
mak: all
|
|
make: all
|
|
|
|
compile:
|
|
@./rebar compile
|
|
|
|
xref:
|
|
@./rebar xref
|
|
|
|
eunit:
|
|
@./rebar eunit
|
|
|
|
clean:
|
|
@./rebar clean
|
|
|
|
doc:
|
|
@./rebar doc
|
|
|
|
check:
|
|
# @./rebar build_plt
|
|
@./rebar check_plt
|
|
@./rebar analyze
|