plantuml-mode/Makefile

24 lines
294 B
Makefile
Raw Normal View History

2016-12-25 18:05:15 +01:00
CASK ?= cask
EMACS ?= emacs
2017-08-19 18:23:45 +02:00
CASK_DIR ?= `${CASK} package-directory`
2016-12-25 18:05:15 +01:00
all: test
test: unit ecukes
unit:
${CASK} exec ert-runner
# TODO: add BDD style tests
#ecukes:
# ${CASK} exec ecukes
install:
${CASK} install
2017-08-18 12:11:09 +02:00
clean:
rm -Rf .emacs.d
rm -Rf .cask
2017-08-18 12:11:09 +02:00
2016-12-25 18:05:15 +01:00
.PHONY: all test unit ecukes install