aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-03-13 11:29:01 +0100
committerLoïc Hoguin <[email protected]>2015-03-13 11:29:01 +0100
commit3cd9afca69bf42453c81e84148e68f6c5a1f8199 (patch)
treeebf328e0091624ce7089ae5e081a8b3d7b37712b /Makefile
parent14e597baa42a436469f99661ed7994685e269dc2 (diff)
downloadcowlib-3cd9afca69bf42453c81e84148e68f6c5a1f8199.tar.gz
cowlib-3cd9afca69bf42453c81e84148e68f6c5a1f8199.tar.bz2
cowlib-3cd9afca69bf42453c81e84148e68f6c5a1f8199.zip
Update test dependencies
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 4 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index fc3b0f3..df0a29f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,13 @@
# See LICENSE for licensing information.
PROJECT = cowlib
+
#ERLC_OPTS += +bin_opt_info
-TEST_ERLC_OPTS += +'{parse_transform, eunit_autoexport}' +'{parse_transform, horse_autoexport}'
PLT_APPS = crypto
-TEST_DEPS = triq
+TEST_ERLC_OPTS += +'{parse_transform, eunit_autoexport}' +'{parse_transform, horse_autoexport}'
+TEST_DEPS = horse triq
+dep_horse = git https://github.com/extend/horse master
dep_triq = git https://github.com/krestenkrab/triq master
include erlang.mk
@@ -41,11 +43,6 @@ ifeq ($(MAKECMDGOALS),perfs)
.NOTPARALLEL:
endif
-deps/horse:
- git clone -n -- https://github.com/extend/horse $(DEPS_DIR)/horse
- cd $(DEPS_DIR)/horse ; git checkout -q master
- $(MAKE) -C $(DEPS_DIR)/horse
-
perfs: test-build
$(gen_verbose) erl -noshell -pa ebin deps/horse/ebin \
-eval 'horse:app_perf($(PROJECT)), erlang:halt().'