X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/21cc6c6174fd6b64265059147b35aed4753ae7c8..3007b2917d71a7d66eb94876536dfd80b0661d40:/Makefile diff --git a/Makefile b/Makefile index 2b6569c9e..4519b7073 100644 --- a/Makefile +++ b/Makefile @@ -1,31 +1,50 @@ EMACS = emacs +CASK = EMACS=${EMACS} cask +DEPENDENCIES = .cask/ +SOURCE_FILES = \ + context-coloring.el \ + context-coloring-javascript.el \ + context-coloring-emacs-lisp.el -all: clean compile test +all: uncompile compile test -bench: - ${EMACS} -Q \ +bench: ${DEPENDENCIES} + ${CASK} exec ${EMACS} -Q \ -L . \ - -L lib \ -l context-coloring \ - -l benchmark/context-coloring-benchmark \ + -l context-coloring-benchmark \ -f context-coloring-benchmark-run -compile: - ${EMACS} -Q -batch \ - -L lib \ - -f batch-byte-compile *.el lib/*.el +compile: ${DEPENDENCIES} + ${CASK} exec ${EMACS} -Q -batch \ + -L . \ + -f batch-byte-compile ${SOURCE_FILES} + +uncompile: + rm -f *.elc -clean: - rm -f *.elc lib/*.elc +clean: uncompile + rm -rf ${DEPENDENCIES} -test: - ${EMACS} -Q -batch \ +${DEPENDENCIES}: + ${CASK} + +test: ${DEPENDENCIES} + ${CASK} exec ${EMACS} -Q -batch \ -L . \ - -L lib \ -l ert \ - -l ert-async \ - -l context-coloring \ - -l test/context-coloring-test.el \ + -l context-coloring-coverage \ + -f context-coloring-coverage-ci-init \ + -l context-coloring-test \ + -f ert-run-tests-batch-and-exit + +cover: ${DEPENDENCIES} + ${CASK} exec ${EMACS} -Q -batch \ + -L . \ + -l ert \ + -l context-coloring-coverage \ + -f context-coloring-coverage-local-init \ + -l context-coloring-test \ -f ert-run-tests-batch-and-exit -.PHONY: all bench compile clean test +.PHONY: all bench compile uncompile clean test cover