aboutsummaryrefslogtreecommitdiffstats
path: root/guide/ch06.html
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-10-22 03:17:18 +0200
committerLoïc Hoguin <[email protected]>2015-10-22 03:17:18 +0200
commitfbc67e34a3521d5e67a1c1c66988dbcbad1df97f (patch)
tree33f1ccb34248aa364616364c824ed631a82534d3 /guide/ch06.html
parentafd11cd36073c29dacd3bfc3c676c67b0d041901 (diff)
downloaderlang.mk-fbc67e34a3521d5e67a1c1c66988dbcbad1df97f.tar.gz
erlang.mk-fbc67e34a3521d5e67a1c1c66988dbcbad1df97f.tar.bz2
erlang.mk-fbc67e34a3521d5e67a1c1c66988dbcbad1df97f.zip
Update user guide
Diffstat (limited to 'guide/ch06.html')
-rw-r--r--guide/ch06.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/guide/ch06.html b/guide/ch06.html
index d323420..c307549 100644
--- a/guide/ch06.html
+++ b/guide/ch06.html
@@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8"/>
-<title>Erlang.mk</title>
+<title>Erlang.mk User Guide</title>
<style type="text/css"><!--
body{background:white;color:black;font-family:"Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;justify-content:center;margin:0 auto;padding:0;width:600px}
header {align-items:center;display:flex;justify-content:center}
@@ -91,10 +91,11 @@ your situation.</p><div class="variablelist"><dl class="variablelist"><dt><span
</span></dt><dd>
List of the names of all registered processes.
</dd><dt><span class="term">
-<code class="literal">OTP_DEPS</code>
+<code class="literal">LOCAL_DEPS</code>
</span></dt><dd>
List of Erlang/OTP applications this project depends on,
- excluding <code class="literal">erts</code>, <code class="literal">kernel</code> and <code class="literal">stdlib</code>.
+ excluding <code class="literal">erts</code>, <code class="literal">kernel</code> and <code class="literal">stdlib</code>, or list of
+ dependencies local to this repository (in <code class="literal">APPS_DIR</code>).
</dd><dt><span class="term">
<code class="literal">DEPS</code>
</span></dt><dd>
@@ -106,7 +107,7 @@ PROJECT_DESCRIPTION = Small, fast, modular HTTP server.
PROJECT_VERSION = 2.0.0-pre.2
PROJECT_REGISTERED = cowboy_clock
-OTP_DEPS = crypto
+LOCAL_DEPS = crypto
DEPS = cowlib ranch</pre><p>Any space before and after the value is dropped.</p><p><a class="ulink" href="deps.asciidoc" target="_top">Dependencies</a> are covered in details in
the next chapter.</p></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="_legacy_method"></a>6.3.2. Legacy method</h3></div></div></div><p>The <span class="emphasis"><em>src/$(PROJECT).app.src</em></span> file is a legacy method of
building Erlang applications. It was introduced by the original