plantuml-mode/Makefile

31 lines
424 B
Makefile
Raw Normal View History

#
# Programs used in the make goals
#
export CASK ?= cask
export EMACS ?= emacs
2016-12-25 18:05:15 +01:00
#
# General configuration
#
export CASK_DIR ?= `${CASK} package-directory`
export BATCH = --batch -q -l .emacs/init.el
2016-12-25 18:05:15 +01:00
all: version test
version:
$(EMACS) $(BATCH) --version
test: install unit ecukes
2016-12-25 18:05:15 +01:00
unit:
${CASK} exec ert-runner
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
.PHONY: all test unit install clean