]> code.delx.au - gnu-emacs-elpa/blob - packages/easy-kill/Makefile
Merge commit '32b1944d5f0a65aa10c6768f4865f7ed1de8eb49' as 'packages/pinentry'
[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