blob: 46a80d622ef268d1e5960a7c08d90286fbc26db4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
EASK ?= eask
compile:
$(EASK) compile
install:
$(EASK) install-deps --dev
lint:
$(EASK) lint package
test: install
$(EASK) test ert ./test/evil-collection-test.el
magit-test: install
$(EASK) test ert ./test/evil-collection-magit-tests.el
.PHONY: compile lint test
# Local Variables:
# tab-width: 8
# End:
|