Add makefile target for byte compilation

This commit is contained in:
Fredrik Bergroth 2017-11-15 09:50:19 +01:00 committed by James N
parent 9585c20d18
commit 14d9c51a1a
4 changed files with 13 additions and 1 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/.cask
*.elc

3
Cask Normal file
View File

@ -0,0 +1,3 @@
(source melpa)
(package-file "evil-collection.el")

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
EMACS ?= emacs
compile:
cask exec $(EMACS) -Q -batch \
-L . \
--eval '(setq byte-compile-error-on-warn t)' \
-f batch-byte-compile *.el

View File

@ -8,7 +8,7 @@
;; Pierre Neidhardt <ambrevar@gmail.com>
;; URL: https://github.com/jojojames/evil-collection
;; Version: 0.0.1
;; Package-Requires: ((emacs "25.1"))
;; Package-Requires: ((emacs "25.1") (evil "1.2.13"))
;; Keywords: evil, tools
;; This program is free software; you can redistribute it and/or modify