Browse Source

Allow PLT destination to be specified

pull/186/head
Reid Draper 11 years ago
parent
commit
c2c70f139d
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      Makefile

+ 6
- 6
Makefile View File

@ -25,13 +25,13 @@ docs:
APPS = kernel stdlib sasl erts ssl tools os_mon runtime_tools crypto inets \ APPS = kernel stdlib sasl erts ssl tools os_mon runtime_tools crypto inets \
xmerl webtool snmp public_key mnesia eunit xmerl webtool snmp public_key mnesia eunit
COMBO_PLT = $(HOME)/.riak_combo_dialyzer_plt
PLT ?= $(HOME)/.riak_combo_dialyzer_plt
check_plt: compile check_plt: compile
dialyzer --check_plt --plt $(COMBO_PLT) --apps $(APPS)
dialyzer --check_plt --plt $(PLT) --apps $(APPS)
build_plt: compile build_plt: compile
dialyzer --build_plt --output_plt $(COMBO_PLT) --apps $(APPS)
dialyzer --build_plt --output_plt $(PLT) --apps $(APPS)
dialyzer: compile dialyzer: compile
@echo @echo
@ -39,14 +39,14 @@ dialyzer: compile
@echo Use "'make build_plt'" to build PLT prior to using this target. @echo Use "'make build_plt'" to build PLT prior to using this target.
@echo @echo
@sleep 1 @sleep 1
dialyzer -Wunmatched_returns --plt $(COMBO_PLT) ebin | \
dialyzer -Wunmatched_returns --plt $(PLT) ebin | \
fgrep -v -f ./dialyzer.ignore-warnings fgrep -v -f ./dialyzer.ignore-warnings
cleanplt: cleanplt:
@echo @echo
@echo "Are you sure? It takes about 1/2 hour to re-build." @echo "Are you sure? It takes about 1/2 hour to re-build."
@echo Deleting $(COMBO_PLT) in 5 seconds.
@echo Deleting $(PLT) in 5 seconds.
@echo @echo
sleep 5 sleep 5
rm $(COMBO_PLT)
rm $(PLT)

Loading…
Cancel
Save