fix(emacs/Makefile): add missing Makefile
This commit is contained in:
parent
df588d6ba0
commit
50213fc664
1 changed files with 17 additions and 0 deletions
17
src/emacs/Makefile
Normal file
17
src/emacs/Makefile
Normal file
|
@ -0,0 +1,17 @@
|
|||
CASK ?= cask
|
||||
EMACS ?= emacs
|
||||
|
||||
all: test
|
||||
|
||||
test: unit ecukes
|
||||
|
||||
unit:
|
||||
${CASK} exec ert-runner
|
||||
|
||||
ecukes:
|
||||
${CASK} exec ecukes
|
||||
|
||||
install:
|
||||
${CASK} install
|
||||
|
||||
.PHONY: all test unit ecukes install
|
Loading…
Reference in a new issue