aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVegard Øye <vegard_oye@hotmail.com>2011-03-06 12:58:48 +0100
committerVegard Øye <vegard_oye@hotmail.com>2011-03-06 12:58:48 +0100
commit32e0eb986de9e7d8588b2f8054f27d7176c08d5a (patch)
tree214cbadc05ec8c9efc92065681a364b4a9f7900b /Makefile
parent3a0c912926bcb3424d878292b6379c952f6bd07e (diff)
Enable Evil when testing
"make emacs" and "make terminal" enables Evil. "make test" and "make tests" do not.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 770fb51..336447c 100644
--- a/Makefile
+++ b/Makefile
@@ -22,8 +22,11 @@ clean:
.PHONY: emacs
emacs: compile
- emacs -Q -L . -l evil-tests.el --eval "(call-interactively 'evil-tests-run)" &
+ emacs -Q -L . -l evil-tests.el --eval "(evil-mode 1)" --eval "(call-interactively 'evil-tests-run)" &
+
+.PHONY: term
+term: terminal
.PHONY: terminal
terminal: compile
- emacs -nw -Q -L . -l evil-tests.el --eval "(call-interactively 'evil-tests-run)"
+ emacs -nw -Q -L . -l evil-tests.el --eval "(evil-mode 1)" --eval "(call-interactively 'evil-tests-run)"