aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVegard Øye <vegard_oye@hotmail.com>2011-03-07 15:20:27 +0100
committerVegard Øye <vegard_oye@hotmail.com>2011-03-07 15:20:27 +0100
commitc82f85081cc984a4fd7df7cffbdc8162878817ee (patch)
tree626bdeb4a31b0542270d07b6a8c34241e026a085 /Makefile
parentb356d75e31e17de915028f3785dca5a41b515635 (diff)
Skip compilation in "make emacs" and "make terminal"
Make aborts the rest of the rule when compilation fails. When the errors are subtle, though, we may want to start up Emacs to inspect what's going on.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 336447c..b0d36c4 100644
--- a/Makefile
+++ b/Makefile
@@ -21,12 +21,12 @@ clean:
rm -f *.elc
.PHONY: emacs
-emacs: compile
+emacs: clean
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
+terminal: clean
emacs -nw -Q -L . -l evil-tests.el --eval "(evil-mode 1)" --eval "(call-interactively 'evil-tests-run)"