diff options
author | Sean Allred <code@seanallred.com> | 2014-11-09 15:44:27 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-09 15:44:27 -0500 |
commit | 3a1645bd1f446ff6cfef4eb901d05138ea9232bf (patch) | |
tree | aa81e2a04207f04b7cb854dfa8b8e3677870a214 | |
parent | 54cfa773584fe0d9828a58d9d09a19959515e21b (diff) |
Compress Makefile usage
Instead of using `make 24.1', use `make 1'.
Also, skip install if it is present already.
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 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,11 +16,11 @@ # make all # -VERSIONS = 24.1 24.2 24.3 24.4 +VERSIONS = 1 2 3 4 all :: $(VERSIONS) $(VERSIONS) :: - evm install emacs-$@-bin || true + evm install emacs-24.$@-bin --skip || true emacs --version emacs --batch -L . -l ert -l test/tests.el -f ert-run-tests-batch-and-exit |