fix(emacs/Makefile): add missing Makefile

This commit is contained in:
Soonho Kong 2014-09-14 20:34:21 -07:00
parent df588d6ba0
commit 50213fc664

17
src/emacs/Makefile Normal file
View 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