This repository has been archived on 2022-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
emacs/Makefile
Wojciech Kozlowski ccb24dd46e Squashed 'emacs-racer/' content from commit 6e0d1b3
git-subtree-dir: emacs-racer
git-subtree-split: 6e0d1b3ebd54497c0cc995a92f09328ff101cd33
2017-09-09 00:25:09 +01:00

22 lines
286 B
Makefile

EMACS ?= emacs
CASK ?= cask
all: test
test: clean-elc
${MAKE} unit
${MAKE} compile
${MAKE} unit
${MAKE} clean-elc
unit:
${CASK} exec ert-runner
compile:
${CASK} exec ${EMACS} -Q -batch -f batch-byte-compile racer.el
clean-elc:
rm -f racer.elc
.PHONY: all test unit compile