aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorCameron Dykes <[email protected]>2014-10-28 09:29:11 -0500
committerCameron Dykes <[email protected]>2014-10-28 09:29:11 -0500
commit1932f656e51ac3b217a24f97ea8220fe0f0f2f27 (patch)
treebcf590d785460c081b89359dcd8f6e48cc3c31eb /README.md
parentdda03b624fcc288be48c83ba391e21fb5c8d320a (diff)
downloaderlang.mk-1932f656e51ac3b217a24f97ea8220fe0f0f2f27.tar.gz
erlang.mk-1932f656e51ac3b217a24f97ea8220fe0f0f2f27.tar.bz2
erlang.mk-1932f656e51ac3b217a24f97ea8220fe0f0f2f27.zip
Update README to include multi dependency example
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/README.md b/README.md
index 6d6452e..ac35b8e 100644
--- a/README.md
+++ b/README.md
@@ -72,6 +72,15 @@ DEPS = cowboy
include erlang.mk
```
+If you need to specify multiple dependencies, you can specify each
+of them separated by spaces:
+
+``` Makefile
+PROJECT = my_project
+DEPS = cowboy gun
+include erlang.mk
+```
+
If the project you want is not included in the package index, or if
you want a different version, a few options are available. You can
edit the package file and contribute to it by opening a pull request.