0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00
cowboy/Makefile
Loïc Hoguin 3a776b146e Initial work on a ct test suite for the HTTP protocol.
Handles two basic tests for both HTTP and HTTPS.
Also renames 'make test' into 'make tests'.
2011-04-08 16:30:37 +02:00

20 lines
229 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
@$(REBAR) eunit
@$(REBAR) ct
dialyze:
@$(REBAR) dialyze