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

27 lines
638 B
Makefile
Raw Normal View History

2011-03-07 22:59:22 +01:00
# See LICENSE for licensing information.
PROJECT = cowboy
# Options.
2011-03-07 22:59:22 +01:00
2014-03-27 11:16:24 +01:00
ERLC_OPTS ?= -Werror +debug_info +warn_export_all +warn_export_vars \
+warn_shadow_vars +warn_obsolete_guard +warn_missing_spec
COMPILE_FIRST = cowboy_middleware cowboy_sub_protocol
CT_SUITES = eunit http loop_handler spdy ws
CT_OPTS += -pa test -ct_hooks cowboy_ct_hook []
PLT_APPS = crypto public_key ssl
2011-03-07 22:59:22 +01:00
# Dependencies.
DEPS = cowlib ranch
dep_cowlib = pkg://cowlib 0.6.2
2014-06-10 11:36:55 +02:00
dep_ranch = pkg://ranch 0.10.0
TEST_DEPS = ct_helper gun
dep_ct_helper = https://github.com/extend/ct_helper.git master
dep_gun = pkg://gun master
# Standard targets.
include erlang.mk