blob: 6bf741327fe46a7432d8629db03bc3217b2b286f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
EMACS = emacs
.PHONY: build check clean
build:
$(EMACS) -Q --batch -L . --eval="(progn (setq byte-compile-debug t) (byte-recompile-directory \".\" 0))"
check:
$(EMACS) -Q --batch -L . -l tests/exiftool-tests.el -f ert-run-tests-batch-and-exit
clean:
rm -vf *.elc tests/*.elc
|