summaryrefslogtreecommitdiffstats
path: root/docs/en/erlang.mk/1/guide/dialyzer.asciidoc
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-12-11 15:05:14 +0100
committerLoïc Hoguin <[email protected]>2018-12-11 15:05:14 +0100
commitb4c7ad9112974725655e39dc7d2a5591da3a7e8e (patch)
tree9db93191d5cc4462abea40a691172cbf376d3820 /docs/en/erlang.mk/1/guide/dialyzer.asciidoc
parentd3abb447a118aecf23afddbec9b83a61ae8d1670 (diff)
downloadninenines.eu-b4c7ad9112974725655e39dc7d2a5591da3a7e8e.tar.gz
ninenines.eu-b4c7ad9112974725655e39dc7d2a5591da3a7e8e.tar.bz2
ninenines.eu-b4c7ad9112974725655e39dc7d2a5591da3a7e8e.zip
Remove bullet from the website
Diffstat (limited to 'docs/en/erlang.mk/1/guide/dialyzer.asciidoc')
-rw-r--r--docs/en/erlang.mk/1/guide/dialyzer.asciidoc13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/en/erlang.mk/1/guide/dialyzer.asciidoc b/docs/en/erlang.mk/1/guide/dialyzer.asciidoc
index 58fe53ff..60311137 100644
--- a/docs/en/erlang.mk/1/guide/dialyzer.asciidoc
+++ b/docs/en/erlang.mk/1/guide/dialyzer.asciidoc
@@ -71,3 +71,16 @@ it doesn't exist. This is normally not necessary as
Dialyzer creates it automatically.
The PLT file will be removed when you run `make distclean`.
+
+=== Dialyzing beam files
+
+By default Erlang.mk will run Dialyzer against the source
+code. It is possible to configure Erlang.mk to use the
+compiled source files instead. This is done using the
+`DIALYZER_DIRS` variable:
+
+[source,make]
+DIALYZER_DIRS = -r ebin
+
+This value must be set before including Erlang.mk to
+function properly.