From 1f227cbdd34fcdf49680945e99e8b1c057f7b637 Mon Sep 17 00:00:00 2001 From: Sean Allred Date: Sat, 8 Nov 2014 17:25:37 -0500 Subject: Rename makefile --- Makefile | 24 ++++++++++++++++++++++++ makefile.make | 11 ----------- 2 files changed, 24 insertions(+), 11 deletions(-) create mode 100644 Makefile delete mode 100644 makefile.make diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e812d5b --- /dev/null +++ b/Makefile @@ -0,0 +1,24 @@ +# 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. +# +# To test Emacs 24.1, for example, use +# +# make 24.1 +# +# To test on all versions, of course, simply use +# +# make +# +# or +# +# make all +# + +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 diff --git a/makefile.make b/makefile.make deleted file mode 100644 index f76bc70..0000000 --- a/makefile.make +++ /dev/null @@ -1,11 +0,0 @@ -# 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 -- cgit v1.2.3