Skip to content

Commit

Permalink
Added Makefile for running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Elis Axelsson committed Mar 4, 2017
1 parent f378ca9 commit c9d1de0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c9d1de0

Please sign in to comment.