plantuml-mode/Makefile

32 lines
504 B
Makefile
Raw Permalink 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
export COVERALLS_REPO_TOKEN = 61YFD7RG1RRJTs0kEuj1aZX7VBgUPiMNO
2016-12-25 18:05:15 +01:00
all: version test
version:
$(EMACS) $(BATCH) --version
2018-03-18 19:29:52 +01:00
test: install unit
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