1
0
mirror of https://github.com/jojojames/evil-collection.git synced 2024-07-04 08:40:53 +02:00
evil-collection/Makefile
2024-04-11 10:24:04 +08:00

23 lines
317 B
Makefile
Executable File

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: