branch: externals/ruby-end
commit 2896cfa95b6aefc5688ccc70bdb2434cc8fbb03f
Author: Johan Andersson <[email protected]>
Commit: Johan Andersson <[email protected]>
Improve Makefile.
---
Makefile | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index 0eddcfa0ed..4fef5a1d77 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,10 @@
-all:
- cask exec ecukes features
+CASK ?= cask
-.PHONY: all
+all: test
+
+test: ecukes
+
+ecukes:
+ $(CASK) exec ecukes
+
+.PHONY: ecukes test all