mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
24 lines
251 B
Makefile
24 lines
251 B
Makefile
# See LICENSE for licensing information.
|
|
|
|
REBAR = rebar
|
|
|
|
all: app
|
|
|
|
app:
|
|
@$(REBAR) compile
|
|
|
|
clean:
|
|
@$(REBAR) clean
|
|
rm -f test/*.beam
|
|
rm -f erl_crash.dump
|
|
|
|
tests: app eunit ct
|
|
|
|
eunit:
|
|
@$(REBAR) eunit
|
|
|
|
ct:
|
|
@$(REBAR) ct
|
|
|
|
dialyze:
|
|
@$(REBAR) dialyze
|