evil-collection/Makefile

23 lines
317 B
Makefile
Raw Permalink Normal View History

2024-04-09 02:10:48 +02:00
EASK ?= eask
compile:
2024-04-09 02:10:48 +02:00
$(EASK) compile
2017-11-15 10:31:25 +01:00
2024-04-09 02:10:48 +02:00
install:
$(EASK) install-deps --dev
2017-11-21 08:18:01 +01:00
2024-04-09 02:10:48 +02:00
lint:
$(EASK) lint package
2019-10-12 19:26:15 +02:00
2024-04-09 02:10:48 +02:00
test: install
$(EASK) test ert ./test/evil-collection-test.el
2019-10-12 19:26:15 +02:00
2024-04-09 02:10:48 +02:00
magit-test: install
$(EASK) test ert ./test/evil-collection-magit-tests.el
2017-11-21 08:18:01 +01:00
2024-04-09 02:10:48 +02:00
.PHONY: compile lint test
# Local Variables:
# tab-width: 8
# End: