Automake tool for Erlang

1. Description

This tool is designed to remove the burden of writing and maintaining
pure Erlang "Emakefile" build file manually.

Simply type erl -s automake in your project directory and the
Emakefile project file will be create automatically.


2. Compilation

If you do not have automake on your system yet, type the following commands:
erlc -o ebin -I include src/*.erl


3. Update

If you already have a previous version of Erlang automake in your
path, simply type the following command to build this new version:

erl -s automake
erl -make


4. Erlang Path

In all cases, make sure to have the Automake ebin directory in your Erlang path. The simplest way to do so is to add the following line in your ~/.erlang file:

code:add_pathz("/path/to/automake/ebin").
