diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-09 20:59:11 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-09 20:59:11 +0000 |
commit | 5305686182f9e233d0c4d056eab9f28a40e3932c (patch) | |
tree | 259d002ee3a0e10ae782cc143b2ecb0cfa1ad259 /Makefile | |
parent | 19f077473848b498841efb5ea7e698a95dec6663 (diff) | |
parent | a3788b8f4f1ae24c48fa2c6c85bd789e08a4293c (diff) |
Merge pull request #35 from vermiculus/24.4-testing
Add 24.4 support
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 22 |
1 files changed, 18 insertions, 4 deletions
@@ -5,7 +5,7 @@ # # To test Emacs 24.1, for example, use # -# make 24.1 +# make 1 # # To test on all versions, of course, simply use # @@ -16,9 +16,23 @@ # make all # -all: 24.1 24.2 24.3 +VERSIONS = 1 2 3 4 -%: - evm install emacs-$@-bin || true +all :: $(VERSIONS) + +$(VERSIONS) :: + 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 + +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: |