28 lines
831 B
Makefile
28 lines
831 B
Makefile
EMACS ?= emacs
|
|
LOAD_PATH = -L . -L ../etaf -L ../ebox -L ../ecss -L ../tp
|
|
|
|
.PHONY: all compile test check checkdoc load clean
|
|
|
|
all: check
|
|
|
|
compile:
|
|
rm -f *.elc tests/*.elc
|
|
$(EMACS) -Q --batch $(LOAD_PATH) --eval '(setq load-prefer-newer t)' \
|
|
--eval '(load-file "etaf-ui.el")' --eval '(byte-compile-file "etaf-ui.el")'
|
|
|
|
test: compile
|
|
$(EMACS) -Q --batch $(LOAD_PATH) --eval '(setq load-prefer-newer t)' \
|
|
-l tests/etaf-ui-tests.el -f ert-run-tests-batch-and-exit
|
|
|
|
load: compile
|
|
$(EMACS) -Q --batch $(LOAD_PATH) --eval '(require (quote etaf-ui))' \
|
|
--eval '(princ "etaf-ui load OK\n")'
|
|
|
|
checkdoc:
|
|
$(EMACS) -Q --batch --eval '(progn (require (quote checkdoc)) (dolist (file (directory-files "." t)) (when (string-suffix-p ".el" file) (checkdoc-file file))))'
|
|
|
|
check: checkdoc compile test
|
|
|
|
clean:
|
|
rm -f *.elc tests/*.elc
|