From 50213fc6640717956b1f5f90d0f881060c5fbb58 Mon Sep 17 00:00:00 2001 From: Soonho Kong Date: Sun, 14 Sep 2014 20:34:21 -0700 Subject: [PATCH] fix(emacs/Makefile): add missing Makefile --- src/emacs/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/emacs/Makefile diff --git a/src/emacs/Makefile b/src/emacs/Makefile new file mode 100644 index 000000000..dcdf9350d --- /dev/null +++ b/src/emacs/Makefile @@ -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