2015-03-22 15:04:05 +00:00
|
|
|
.PHONY: clean dialyzer_warnings xref_warnings deps test test_eunit test_inttest
|
2012-06-29 15:29:03 +00:00
|
|
|
|
|
|
|
REBAR=$(PWD)/rebar
|
|
|
|
RETEST=$(PWD)/deps/retest/retest
|
2014-06-27 22:09:04 +00:00
|
|
|
OTPVSNCMD='io:fwrite("~s",[rebar_utils:otp_release()]), halt().'
|
2014-08-29 15:10:23 +00:00
|
|
|
OTPVSN=$(shell erl -pa ebin/ -noshell -eval $(OTPVSNCMD))
|
2014-06-27 22:09:04 +00:00
|
|
|
PLT_FILENAME=~/.dialyzer_rebar_$(OTPVSN)_plt
|
2015-03-22 15:04:05 +00:00
|
|
|
LOG_LEVEL?=debug
|
2015-03-28 11:51:52 +00:00
|
|
|
RT_TARGETS?=inttest
|
2012-01-01 15:29:02 +00:00
|
|
|
|
2010-04-09 15:24:45 +00:00
|
|
|
all:
|
|
|
|
./bootstrap
|
2010-06-08 19:23:36 +00:00
|
|
|
|
|
|
|
clean:
|
2012-11-23 16:59:15 +00:00
|
|
|
@rm -rf rebar ebin/*.beam inttest/rt.work rt.work .eunit
|
2013-09-01 17:34:29 +00:00
|
|
|
@rm -f .rebarinfo
|
2012-11-23 16:59:15 +00:00
|
|
|
|
|
|
|
distclean: clean
|
2013-06-15 10:00:32 +00:00
|
|
|
@rm -f dialyzer_warnings
|
2012-11-23 16:59:15 +00:00
|
|
|
@rm -rf deps
|
2011-09-02 17:51:18 +00:00
|
|
|
|
|
|
|
debug:
|
2012-01-01 15:29:02 +00:00
|
|
|
@./bootstrap debug
|
|
|
|
|
2012-06-29 15:29:03 +00:00
|
|
|
check: debug xref dialyzer deps test
|
2012-01-01 15:29:02 +00:00
|
|
|
|
2012-04-02 15:01:39 +00:00
|
|
|
xref:
|
2012-04-02 17:22:15 +00:00
|
|
|
@./rebar xref
|
2012-01-01 15:29:02 +00:00
|
|
|
|
2014-06-27 22:09:04 +00:00
|
|
|
build_plt:
|
|
|
|
-dialyzer --build_plt --output_plt $(PLT_FILENAME) --apps \
|
|
|
|
erts \
|
|
|
|
kernel \
|
|
|
|
stdlib \
|
|
|
|
crypto \
|
|
|
|
compiler \
|
|
|
|
asn1 \
|
|
|
|
eunit \
|
|
|
|
tools \
|
|
|
|
ssl \
|
|
|
|
edoc \
|
|
|
|
reltool \
|
|
|
|
snmp \
|
|
|
|
sasl
|
2014-09-03 18:16:14 +00:00
|
|
|
-dialyzer --add_to_plt --plt $(PLT_FILENAME) \
|
|
|
|
--output_plt $(PLT_FILENAME) \
|
|
|
|
--apps diameter
|
2014-06-27 22:09:04 +00:00
|
|
|
|
2012-01-01 15:29:02 +00:00
|
|
|
dialyzer: dialyzer_warnings
|
|
|
|
@diff -U0 dialyzer_reference dialyzer_warnings
|
2011-09-02 17:51:18 +00:00
|
|
|
|
2012-01-01 15:29:02 +00:00
|
|
|
dialyzer_warnings:
|
2014-06-27 22:09:04 +00:00
|
|
|
-@dialyzer --plt $(PLT_FILENAME) -q -nn -n ebin \
|
|
|
|
-Wunmatched_returns \
|
|
|
|
-Werror_handling \
|
|
|
|
-Wrace_conditions \
|
|
|
|
> dialyzer_warnings
|
|
|
|
|
|
|
|
typer:
|
|
|
|
typer -r --plt $(PLT_FILENAME) ./src -I ./include
|
2012-06-04 14:56:51 +00:00
|
|
|
|
|
|
|
binary: VSN = $(shell ./rebar -V)
|
|
|
|
binary: clean all
|
2012-07-02 11:39:37 +00:00
|
|
|
@cp rebar ../rebar.wiki/rebar
|
2012-06-29 15:29:03 +00:00
|
|
|
(cd ../rebar.wiki && git commit -m "Update $(VSN)" rebar)
|
|
|
|
|
|
|
|
deps:
|
2012-07-02 11:39:37 +00:00
|
|
|
@REBAR_EXTRA_DEPS=1 ./rebar get-deps
|
2015-03-22 15:04:05 +00:00
|
|
|
$(MAKE) -C deps/retest
|
2012-06-29 15:29:03 +00:00
|
|
|
|
2015-03-22 15:04:05 +00:00
|
|
|
test: test_eunit test_inttest
|
|
|
|
|
|
|
|
test_eunit: all
|
2012-07-02 11:39:37 +00:00
|
|
|
@$(REBAR) eunit
|
2015-03-22 15:04:05 +00:00
|
|
|
|
|
|
|
test_inttest: all deps
|
2015-03-28 11:51:52 +00:00
|
|
|
@$(RETEST) -l $(LOG_LEVEL) $(RT_TARGETS)
|
2013-03-04 15:33:54 +00:00
|
|
|
|
|
|
|
travis: clean debug xref clean all deps test
|