1
0
mirror of https://github.com/skuro/plantuml-mode.git synced 2024-06-28 07:40:58 +02:00
plantuml-mode/Makefile
Carlo Sciolla 06725c7ce7
Disable broken test
Unicode testing appears to be broken only when run under ERT runner
2018-03-18 23:05:31 +01:00

31 lines
417 B
Makefile

#
# Programs used in the make goals
#
export CASK ?= cask
export EMACS ?= emacs
#
# General configuration
#
export CASK_DIR ?= `${CASK} package-directory`
export BATCH = --batch -q -l .emacs/init.el
all: version test
version:
$(EMACS) $(BATCH) --version
test: install unit
unit:
${CASK} exec ert-runner
install:
${CASK} install
clean:
rm -Rf .emacs.d
rm -Rf .cask
.PHONY: all test unit install clean