]> code.delx.au - gnu-emacs-elpa/blob - packages/easy-kill/Makefile
Merge commit '0cda39255827f283e7578cd469ae42daad9556a2' from js2-mode
[gnu-emacs-elpa] / packages / easy-kill / Makefile
1 .PHONY: all clean test
2
3 EMACS = emacs
4
5 ELCFILES = $(addsuffix .elc, $(basename $(wildcard *.el)))
6
7 all: $(ELCFILES)
8
9 %.elc : %.el
10 @echo Compiling $<
11 @${EMACS} -batch -q -no-site-file -L . -f batch-byte-compile $<
12
13 clean:
14 @rm -f *.elc
15
16 test: all
17 @${EMACS} -batch -L . -l test.el -f ert-run-tests-batch-and-exit