diff options
author | Loïc Hoguin <[email protected]> | 2011-03-07 22:59:22 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2011-03-17 00:29:35 +0100 |
commit | da7225594010d0df20779a0915474ccedd25d7cf (patch) | |
tree | eb2c0485076124dec9967c650daca24440786a96 /Makefile | |
download | cowboy-da7225594010d0df20779a0915474ccedd25d7cf.tar.gz cowboy-da7225594010d0df20779a0915474ccedd25d7cf.tar.bz2 cowboy-da7225594010d0df20779a0915474ccedd25d7cf.zip |
Initial commit.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ec86c18 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +# See LICENSE for licensing information. + +all: app + +app: + @./rebar compile + +clean: + @./rebar clean + rm -f erl_crash.dump + +test: + @./rebar eunit |