aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-05-01 17:26:11 +0200
committerLoïc Hoguin <[email protected]>2013-05-01 17:26:11 +0200
commite84088e72e7de5f56acbbc24f7a9abe018abe01b (patch)
tree96b63f478fbbbe43068d611679500c870bfb0ac4 /README.md
parent747cba4d71643cd86894afa60836fddff83fd389 (diff)
downloaderlang.mk-e84088e72e7de5f56acbbc24f7a9abe018abe01b.tar.gz
erlang.mk-e84088e72e7de5f56acbbc24f7a9abe018abe01b.tar.bz2
erlang.mk-e84088e72e7de5f56acbbc24f7a9abe018abe01b.zip
Add paragraph about a common workflow
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index e5596e9..451fab3 100644
--- a/README.md
+++ b/README.md
@@ -76,6 +76,12 @@ You can combine targets to perform many operations. For example, the
shell command `make clean app` will have the effect of recompiling
the application fully, without touching the dependencies.
+A common workflow when editing a file would be to run `make` regularly
+to see if it compiles (or less often `make clean app` if you want to
+recompile everything), followed by `make dialyze` to see if there are
+any type errors and then `make tests` to run the test suites. The
+result of the test runs can be browsed from the `logs/index.html` file.
+
Options
-------