aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2015-01-16 13:07:20 -0200
committerArtur Malabarba <bruce.connor.am@gmail.com>2015-01-16 13:07:20 -0200
commit574944fa6ca61ce07e0eb059711ead2b74891e44 (patch)
treefacfe1ef83d2eace51dc170a19e8a1e11e70c90f /Makefile
parent7a75cd61e822a4895b85bc17780b163bd6876ca7 (diff)
parent389e433953bba4003b102748dbbf5f8a9b421a51 (diff)
Merge branch 'master' into more-tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index ae11f84..e04c1b0 100644
--- a/Makefile
+++ b/Makefile
@@ -20,20 +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
- rm -rf .sx/
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: