diff options
| author | Vegard Øye <vegard_oye@hotmail.com> | 2011-03-07 15:20:27 +0100 |
|---|---|---|
| committer | Vegard Øye <vegard_oye@hotmail.com> | 2011-03-07 15:20:27 +0100 |
| commit | c82f85081cc984a4fd7df7cffbdc8162878817ee (patch) | |
| tree | 626bdeb4a31b0542270d07b6a8c34241e026a085 /Makefile | |
| parent | b356d75e31e17de915028f3785dca5a41b515635 (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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)" |
