diff options
| author | Evgeni Kolev <evgenysw@gmail.com> | 2017-06-05 09:39:58 +0300 |
|---|---|---|
| committer | Evgeni Kolev <evgenysw@gmail.com> | 2017-06-05 09:47:18 +0300 |
| commit | 15b0b14091b6740a32ccb074bbd832868643958a (patch) | |
| tree | 0cae854b62f9a6f0a50e7bdc2299f2ecd4d4c69a /Makefile | |
| parent | 7a0358ce3eb9ed01744170fa8a1e12d98f8b8839 (diff) | |
Add tests
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a9a8e86 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +emacs ?= emacs +bemacs = $(emacs) -batch -l test/elpa.el + +update: + $(emacs) -batch -l test/make-update.el + +compile: clean + $(bemacs) -l test/make-compile.el + +test: + $(bemacs) -l test/make-test.el + +clean: + rm -f *.elc + +.PHONY: update compile test clean |
