Skip to content
This repository has been archived by the owner on May 12, 2018. It is now read-only.

Add typer target #309

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 26 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

REBAR=$(PWD)/rebar
RETEST=$(PWD)/deps/retest/retest
OTPVSNCMD='io:fwrite("~s",[rebar_utils:otp_release()]), halt().'
OTPVSN = $(shell erl -pa ebin/ -noshell -eval $(OTPVSNCMD))
PLT_FILENAME=~/.dialyzer_rebar_$(OTPVSN)_plt

all:
./bootstrap
Expand All @@ -13,6 +16,7 @@ clean:
distclean: clean
@rm -f dialyzer_warnings
@rm -rf deps
@rm -f ~/.dialyzer_rebar_*_plt

debug:
@./bootstrap debug
Expand All @@ -22,12 +26,32 @@ check: debug xref dialyzer deps test
xref:
@./rebar xref

build_plt:
-dialyzer --build_plt --output_plt $(PLT_FILENAME) --apps \
erts \
kernel \
stdlib \
crypto \
compiler \
asn1 \
eunit \
tools \
ssl \
edoc \
reltool \
snmp \
sasl
-dialyzer --add_to_plt --output_plt $(PLT_FILENAME) --apps diameter

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's put the apps on individual lines for easier editing.

dialyzer: dialyzer_warnings
@diff -U0 dialyzer_reference dialyzer_warnings

dialyzer_warnings:
-@dialyzer -q -nn -n ebin -Wunmatched_returns -Werror_handling \
-Wrace_conditions > dialyzer_warnings
-@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

binary: VSN = $(shell ./rebar -V)
binary: clean all
Expand Down