diff options
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | Makefile | 18 | ||||
-rw-r--r-- | bog-todo | 2 |
3 files changed, 23 insertions, 1 deletions
@@ -1 +1,5 @@ /bog-autoloads.el + +# Needed for `make test` +.downloads +dash.el diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ae2638a --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +EMACS := emacs +CURL := curl --silent + +DASH_URL := https://raw.githubusercontent.com/magnars/dash.el/master/dash.el + +.PHONY: test + +test: .downloads + ${EMACS} -Q --batch -L . \ + -l bog-tests \ + --eval "(ert-run-tests-batch-and-exit '(not (tag interactive)))" + +.downloads: + ${CURL} ${DASH_URL} > dash.el + touch .downloads + +clean: + @rm -rf *.elc @@ -56,7 +56,7 @@ extensions (or maybe just take the extension from the original file). * Testing -** ENH Ability to run tests from makefile +** DONE Ability to run tests from makefile ** DONE Put some of the common setup in macros |