blob: f463c99f8a4383aa6fbf7110c97812575c3c6b93 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# See LICENSE for licensing information.
REBAR = ./rebar
all: app
app:
@$(REBAR) compile
clean:
@$(REBAR) clean
rm -f erl_crash.dump
test:
@$(REBAR) eunit
|