plantuml-mode/Makefile

25 lines
322 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
2017-08-18 12:11:09 +02:00
clean:
rm -Rf .emacs.d
eval $(foo := $(CASK package-directory))
echo $(foo)
#rm -Rf ${dir}/../testing
2016-12-25 18:05:15 +01:00
.PHONY: all test unit ecukes install