aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index 6d6452e..8a02002 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.
@@ -206,6 +215,10 @@ variable. It takes the arguments that will then be passed to
You can specify a list of modules to be compiled first using
the `COMPILE_FIRST` variable.
+If `{id, "git"},` is found in your project's `.app.src`, the
+extended output of `git describe ...` will replace it. This
+can be retrieved at runtime via `application:get_key/2`.
+
Bootstrap plugin
----------------