aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 7b0b698..e04c1b0 100644
--- a/Makefile
+++ b/Makefile
@@ -20,19 +20,19 @@ VERSIONS = 1 2 3 4
all :: $(VERSIONS)
-$(VERSIONS) ::
+$(VERSIONS) :: clean
evm install emacs-24.$@-bin --skip || true
evm use emacs-24.$@-bin
emacs --version
cask install
emacs --batch -L . -l ert -l test/tests.el -f ert-run-tests-batch-and-exit
+clean:
+ rm -rf .sx/
+ cask clean-elc
+
install_cask:
curl -fsSkL https://raw.github.com/cask/cask/master/go | python
install_evm:
curl -fsSkL https://raw.github.com/rejeep/evm/master/go | bash
-
-# Local Variables:
-# indent-tabs-mode: t
-# End: