mirror of
https://github.com/valitydev/woody_erlang.git
synced 2024-11-06 02:15:19 +00:00
28 lines
355 B
Makefile
28 lines
355 B
Makefile
REBAR := $(shell which rebar3 2>/dev/null || which ./rebar3)
|
|
|
|
.PHONY: all compile test clean distclean dialyze
|
|
|
|
all: compile
|
|
|
|
compile:
|
|
$(REBAR) compile
|
|
|
|
rebar-update:
|
|
$(REBAR) update
|
|
|
|
test:
|
|
$(REBAR) ct
|
|
|
|
xref:
|
|
$(REBAR) xref
|
|
|
|
clean:
|
|
$(REBAR) clean
|
|
|
|
distclean:
|
|
$(REBAR) clean -a
|
|
rm -rfv _build _builds _cache _steps _temp
|
|
|
|
dialyze:
|
|
$(REBAR) dialyzer
|