diff options
author | Loïc Hoguin <[email protected]> | 2013-08-22 10:39:50 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-08-22 10:40:59 +0200 |
commit | 018e392f3a47a82bb41eb345933ec5cfa2490d38 (patch) | |
tree | 68b2d6bf25525b634d1c21ec5c60f10919a2e712 /Makefile | |
download | gun-018e392f3a47a82bb41eb345933ec5cfa2490d38.tar.gz gun-018e392f3a47a82bb41eb345933ec5cfa2490d38.tar.bz2 gun-018e392f3a47a82bb41eb345933ec5cfa2490d38.zip |
Initial commit with working SPDY client
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9d8a30f --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +# See LICENSE for licensing information. + +PROJECT = gun + +# Options. + +CT_SUITES = twitter +PLT_APPS = ssl + +# Dependencies. + +DEPS = cowlib ranch +dep_cowlib = pkg://cowlib master +dep_ranch = pkg://ranch master + +# Standard targets. + +include erlang.mk |