12 lines
109 B
Makefile
12 lines
109 B
Makefile
REBAR=rebar3
|
|
|
|
all: compile
|
|
|
|
compile:
|
|
${REBAR} compile
|
|
|
|
clean:
|
|
${REBAR} clean
|
|
|
|
test: compile
|
|
${REBAR} eunit
|