0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00
cowboy/Makefile

25 lines
251 B
Makefile
Raw Normal View History

2011-03-07 22:59:22 +01:00
# See LICENSE for licensing information.
REBAR = rebar
2011-03-07 22:59:22 +01:00
all: app
app:
@$(REBAR) compile
2011-03-07 22:59:22 +01:00
clean:
@$(REBAR) clean
rm -f test/*.beam
2011-03-07 22:59:22 +01:00
rm -f erl_crash.dump
tests: app eunit ct
eunit:
@$(REBAR) eunit
ct:
@$(REBAR) ct
dialyze:
@$(REBAR) dialyze