aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-11-28 15:14:59 +0100
committerLoïc Hoguin <[email protected]>2018-11-28 15:14:59 +0100
commitba993a77b80569971d1c64a9e4634f7b5be8bdde (patch)
tree96be0c591fc3d3aab9bfc01b63e60799ca3e1011
parente78e76c701c4554295ddfd6083b7aa54a378c6a9 (diff)
downloaderlang.mk-ba993a77b80569971d1c64a9e4634f7b5be8bdde.tar.gz
erlang.mk-ba993a77b80569971d1c64a9e4634f7b5be8bdde.tar.bz2
erlang.mk-ba993a77b80569971d1c64a9e4634f7b5be8bdde.zip
Remove some duplicate information from the legacy README
-rw-r--r--README.legacy.md58
1 files changed, 0 insertions, 58 deletions
diff --git a/README.legacy.md b/README.legacy.md
index 455c5b5..59d74d1 100644
--- a/README.legacy.md
+++ b/README.legacy.md
@@ -52,15 +52,6 @@ or equivalent file.
MAKEFLAGS="-j32 -O"
```
-EDoc plugin
------------
-
-This plugin is available by default.
-
-EDoc options can be specified in Erlang format by defining
-the `EDOC_OPTS` variable. For more information please see
-`erl -man edoc`.
-
ErlyDTL plugin
--------------
@@ -78,55 +69,6 @@ Additional ErlyDTL options can be specified as a comma-separated list
by defining the `DTL_OPTS` variable. Those options will be prepended
to the options specified by the plugin itself.
-Escript plugin
---------------
-
-This plugin is available by default. It adds the following
-target:
-
-`escript` which creates a shell-executable archive named
-the same as your `$(PROJECT)`, containing the following files
-from your application and its dependencies:
-
-* `*.beam`
-* contents of `priv/`
-* `sys.config` for your application
-
-There are a number of optional configuration parameters:
-
-* `ESCRIPT_NAME` if a different output file is required
-* `ESCRIPT_COMMENT` to alter the comment line in the escript header
-* `ESCRIPT_BEAMS` for the paths searched for `*.beam` files to include
-* `ESCRIPT_SYS_CONFIG` defaults to `rel/sys.config`
-* `ESCRIPT_EMU_ARGS` for the parameters used to start the VM
-* `ESCRIPT_SHEBANG` for the line used by your shell to start `escript`
-* `ESCRIPT_STATIC` for non-beam directories to be included as well
-
-Refer to http://www.erlang.org/doc/man/escript.html for
-more information on `escript` functionality in general.
-
-Triq plugin
------------
-
-This plugin is available by default. It adds the following
-target:
-
-`triq` will check all the properties found in `ebin` or
-the test directory specified in `TEST_DIR`.
-
-You can use the `t` variable to give a specific module
-or function to run, for example:
-
-``` bash
-$ make triq t=cow_http_hd
-```
-
-Or:
-
-``` bash
-$ make triq t=cow_http_hd:prop_parse_accept
-```
-
Xref plugin
------------