summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 4 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index acbc9d4..412a87b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,8 @@
-EMACS=emacs
-CASK ?= cask
-
package-lint:
- cask exec $(EMACS) -Q --batch -l "package-lint.el" -f "package-lint-batch-and-exit" terminal-here.el
+ cask exec emacs -Q --batch -l "package-lint.el" -f "package-lint-batch-and-exit" terminal-here.el
build :
- cask exec $(EMACS) -Q --batch --eval \
+ cask exec emacs -Q --batch --eval \
"(progn \
(setq byte-compile-error-on-warn t) \
(batch-byte-compile))" terminal-here.el
@@ -14,9 +11,9 @@ clean :
@rm -f *.elc
test: build
- ${CASK} exec ert-runner
+ cask exec ert-runner
install:
- ${CASK} install
+ cask install
.PHONY: all test install clean build