diff options
author | Sean Allred <code@seanallred.com> | 2014-11-08 17:24:15 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-08 17:24:15 -0500 |
commit | debf27f3a4fba58f97593e4bf3b962a2dbad2bca (patch) | |
tree | 2dac574334d569e102fd09f82b14992de463854b | |
parent | e9277af61fe725ef70769add9c050bfed4509a22 (diff) |
Add makefile
-rw-r--r-- | makefile.make | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/makefile.make b/makefile.make new file mode 100644 index 0000000..f76bc70 --- /dev/null +++ b/makefile.make @@ -0,0 +1,11 @@ +# This makefile runs the tests as Travis runs them. Be sure to test +# locally before you push if you are under the impression that the +# patch should work. This will cut down on the number of commits in +# the repository that, essentially, patch patches. + +all: 24.1 24.2 24.3 + +%: + evm install emacs-$@-bin || true + emacs --version + emacs --batch -L . -l ert -l test/tests.el -f ert-run-tests-batch-and-exit |