plantuml-mode/Makefile

19 lines
215 B
Makefile
Raw Normal View History

2016-12-25 18:05:15 +01:00
CASK ?= cask
EMACS ?= emacs
all: test
test: unit ecukes
unit:
${CASK} exec ert-runner
# TODO: add BDD style tests
#ecukes:
# ${CASK} exec ecukes
install:
${CASK} install
.PHONY: all test unit ecukes install