diff options
author | Loïc Hoguin <[email protected]> | 2011-05-04 11:50:46 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2011-05-04 11:50:46 +0200 |
commit | cc663df5db916b4f4da532d765fc2d6b5b60933c (patch) | |
tree | 7335ad12638a9f5d5e3a328a3877d555bf410553 /Makefile | |
parent | bb800ee0d93da6bf4725002c7a27a2ae6263bb22 (diff) | |
download | cowboy-cc663df5db916b4f4da532d765fc2d6b5b60933c.tar.gz cowboy-cc663df5db916b4f4da532d765fc2d6b5b60933c.tar.bz2 cowboy-cc663df5db916b4f4da532d765fc2d6b5b60933c.zip |
Makefile: Add separate eunit and ct test rules.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -12,8 +12,12 @@ clean: rm -f test/*.beam rm -f erl_crash.dump -tests: app +tests: app eunit ct + +eunit: @$(REBAR) eunit + +ct: @$(REBAR) ct dialyze: |