]> code.delx.au - gnu-emacs-elpa/blob - packages/adjust-parens/Makefile
Merge commit '0cda39255827f283e7578cd469ae42daad9556a2' from js2-mode
[gnu-emacs-elpa] / packages / adjust-parens / Makefile
1 .PHONY: all clean
2
3 ELCFILES = $(addsuffix .elc, $(basename $(wildcard *.el)))
4
5 all: $(ELCFILES)
6
7 %.elc : %.el
8 @echo Compiling $<
9 @emacs --batch -q --no-site-file -L . -f batch-byte-compile $<
10
11 clean:
12 @rm -f *.elc
13
14 # Don't depend on $(ELCFILES) so as failures may have a non byte compiled backtrace
15 check:
16 @emacs --batch -q --no-site-file -L . -l adjust-parens-tests.el -f ert-run-tests-batch-and-exit
17