Added Makefile for running tests

master
Elis Axelsson 9 years ago
parent f378ca9f09
commit c9d1de00ff
No known key found for this signature in database
GPG Key ID: D57EFA625C9A925F
  1. 20
      Makefile

@ -0,0 +1,20 @@
EMACS ?= emacs
CASK ?= cask
all: test
test:
${MAKE} clean
${MAKE} unit
${MAKE} compile
${MAKE} unit
${MAKE} clean
unit:
${CASK} exec ert-runner
compile:
${CASK} build
clean:
${CASK} clean-elc
Loading…
Cancel
Save