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