12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- # Copyright (c) 2013-2015, Loïc Hoguin <essen@ninenines.eu>
- # This file is part of erlang.mk and subject to the terms of the ISC License.
- .PHONY: plt distclean-plt dialyze
- # Configuration.
- DIALYZER_PLT ?= $(CURDIR)/.$(PROJECT).plt
- export DIALYZER_PLT
- PLT_APPS ?=
- DIALYZER_DIRS ?= --src -r src
- DIALYZER_OPTS ?= -Werror_handling -Wrace_conditions \
- -Wunmatched_returns # -Wunderspecs
- # Core targets.
- check:: dialyze
- distclean:: distclean-plt
- help::
- @printf "%s\n" "" \
- "Dialyzer targets:" \
- " plt Build a PLT file for this project" \
- " dialyze Analyze the project using Dialyzer"
- # Plugin-specific targets.
- $(DIALYZER_PLT): deps app
- @dialyzer --build_plt --apps erts kernel stdlib $(PLT_APPS) $(ALL_DEPS_DIRS)
- plt: $(DIALYZER_PLT)
- distclean-plt:
- $(gen_verbose) rm -f $(DIALYZER_PLT)
- ifneq ($(wildcard $(DIALYZER_PLT)),)
- dialyze:
- else
- dialyze: $(DIALYZER_PLT)
- endif
- @dialyzer --no_native $(DIALYZER_DIRS) $(DIALYZER_OPTS)
|