]> code.delx.au - gnu-emacs-elpa/blob - packages/gnome-c-style/Makefile
Merge commit '0cda39255827f283e7578cd469ae42daad9556a2' from js2-mode
[gnu-emacs-elpa] / packages / gnome-c-style / Makefile
1 EMACS ?= emacs
2 RM ?= rm
3 ELC = gnome-c-align.elc gnome-c-snippet.elc gnome-c-style.elc
4
5 all: $(ELC)
6
7 %.elc: %.el
8 $(EMACS) -Q -batch --eval "(setq load-path (cons nil load-path))" \
9 -f batch-byte-compile $<
10
11 check:
12 $(EMACS) -Q -batch --eval "(setq load-path (cons nil load-path))" \
13 -l ert -l gnome-c-tests.el -f ert-run-tests-batch-and-exit
14
15 clean:
16 $(RM) -rf $(ELC)