diff options
author | Loïc Hoguin <[email protected]> | 2018-11-28 16:02:21 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2018-11-28 16:02:21 +0100 |
commit | d3abb447a118aecf23afddbec9b83a61ae8d1670 (patch) | |
tree | 8e3320f64452ac2aa76d68ce50fd8487893929e5 /docs/en/erlang.mk/1/guide/edoc.asciidoc | |
parent | 3edee0ace8f3f12653381e8038461689363c9541 (diff) | |
download | ninenines.eu-d3abb447a118aecf23afddbec9b83a61ae8d1670.tar.gz ninenines.eu-d3abb447a118aecf23afddbec9b83a61ae8d1670.tar.bz2 ninenines.eu-d3abb447a118aecf23afddbec9b83a61ae8d1670.zip |
Ranch 1.7.1 and Cowboy 2.6.1
Diffstat (limited to 'docs/en/erlang.mk/1/guide/edoc.asciidoc')
-rw-r--r-- | docs/en/erlang.mk/1/guide/edoc.asciidoc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/en/erlang.mk/1/guide/edoc.asciidoc b/docs/en/erlang.mk/1/guide/edoc.asciidoc index 9fc1a740..2992a37d 100644 --- a/docs/en/erlang.mk/1/guide/edoc.asciidoc +++ b/docs/en/erlang.mk/1/guide/edoc.asciidoc @@ -46,3 +46,16 @@ the following to your Makefile: ---- docs:: edoc ---- + +=== Running EDoc on all applications + +In a multi-application project you may want to run EDoc +against all applications at the same time, instead of +against each applications independently. To do so, you +need to configure the `EDOC_SRC_DIRS` at the end of +your Makefile, after including 'erlang.mk': + +[source,make] +---- +EDOC_SRC_DIRS = $(ALL_APPS_DIRS) +---- |