Module ec
Simple, Erlang-oriented make-like utility.
Description
Simple, Erlang-oriented make-like utility.Function Index
| compile/3 | Compiles and documents all the .erl files in the
Source tree into corresponding trees in Dest
and Doc. |
| start/0 | Equivalent to compile("src", "ebin", "doc"). |
Function Details
compile/3
compile(Source::dir(), Ebin::dir(), Doc::dir()) -> Result
Compiles and documents all the .erl files in the
Source tree into corresponding trees in Dest
and Doc. This function only compiles files that are
newer than their .beam counterparts, and only documents
files that are newer than their .html counterparts.
start/0
start() -> Result
Equivalent to compile("src", "ebin", "doc").