evil-collection/Makefile

25 lines
748 B
Makefile
Raw Normal View History

EMACS ?= emacs
compile:
cask exec $(EMACS) -Q -batch \
-L . \
--eval '(setq evil-want-integration nil)' \
--eval '(setq byte-compile-error-on-warn t)' \
-f batch-byte-compile *.el modes/*/*.el
2017-11-15 10:31:25 +01:00
lint:
cask exec $(EMACS) -Q -batch \
--eval "(require 'package)" \
--eval "(push '(\"melpa\" . \"http://melpa.org/packages/\") package-archives)" \
--eval "(package-initialize)" \
--eval "(package-refresh-contents)" \
-l package-lint.el \
--eval "(advice-add 'package-lint--check-eval-after-load :around 'ignore)" \
--eval "(advice-add 'package-lint--check-version-regexp-list :around 'ignore)" \
-f package-lint-batch-and-exit *.el modes/*/*.el
2017-11-21 08:18:01 +01:00
test:
cask exec ert-runner
2018-09-12 05:38:57 +02:00
.PHONY: compile lint test