avy/Makefile
2015-05-19 16:21:47 +02:00

21 lines
289 B
Makefile

emacs ?= emacs
# EMACS = emacs-24.3
LOAD = -l avy.el -l avy-test.el
.PHONY: all test clean
all: compile test
test:
$(emacs) -batch $(LOAD) -f ert-run-tests-batch-and-exit
compile:
$(emacs) -batch -l targets/avy-init.el
run:
$(emacs) -Q -l targets/avy-init.el
clean:
rm -f *.elc