54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
REBAR_BIN := $(shell which rebar)
|
|
ifeq ($(REBAR_BIN),)
|
|
REBAR_BIN = ./rebar
|
|
endif
|
|
|
|
.PHONY: rel deps package pkgclean edoc
|
|
|
|
all: deps compile
|
|
|
|
compile:
|
|
$(REBAR_BIN) compile
|
|
|
|
deps:
|
|
$(REBAR_BIN) get-deps
|
|
|
|
clean:
|
|
$(REBAR_BIN) -r clean
|
|
|
|
test: deps compile eunit
|
|
|
|
eunit:
|
|
$(REBAR_BIN) -v skip_deps=true eunit
|
|
|
|
edoc: edoc-clean
|
|
$(REBAR_BIN) skip_deps=true doc
|
|
|
|
edoc-clean:
|
|
rm -f edoc/*.png edoc/*.html edoc/*.css edoc/edoc-info
|
|
|
|
pulse: compile
|
|
env USE_PULSE=1 $(REBAR_BIN) skip_deps=true clean compile
|
|
env USE_PULSE=1 $(REBAR_BIN) skip_deps=true -D PULSE eunit -v
|
|
|
|
APPS = kernel stdlib sasl erts ssl compiler eunit crypto
|
|
PLT = $(HOME)/.machi_dialyzer_plt
|
|
|
|
build_plt: deps compile
|
|
dialyzer --build_plt --output_plt $(PLT) --apps $(APPS) deps/*/ebin
|
|
|
|
DIALYZER_DEP_APPS = ebin/machi_pb.beam deps/protobuffs/ebin
|
|
DIALYZER_FLAGS = -Wno_return -Wrace_conditions -Wunderspecs
|
|
|
|
dialyzer: deps compile
|
|
dialyzer $(DIALYZER_FLAGS) --plt $(PLT) ebin $(DIALYZER_DEP_APPS) | \
|
|
egrep -v -f ./filter-dialyzer-dep-warnings
|
|
|
|
dialyzer-test: deps compile
|
|
echo Force rebar to recompile .eunit dir w/o running tests > /dev/null
|
|
rebar skip_deps=true eunit suite=lamport_clock
|
|
dialyzer $(DIALYZER_FLAGS) --plt $(PLT) .eunit $(DIALYZER_DEP_APPS) | \
|
|
egrep -v -f ./filter-dialyzer-dep-warnings
|
|
|
|
clean_plt:
|
|
rm $(PLT)
|