blob: e060d6421e19e8b76b39967fbb22e6b8580a3708 (
plain)
1
2
3
4
5
6
7
8
9
10
|
.PHONY: build test clean
test: build
emacs -batch -l ert -L . -l flymake-clippy-test.el -f ert-run-tests-batch-and-exit
build: clean
emacs -batch -L . -f batch-byte-compile flymake-clippy.el
clean:
rm -f flymake-clippy.elc
|