emacs-vs-dark-theme/Makefile
2022-12-10 17:06:20 +08:00

33 lines
470 B
Makefile

EMACS ?= emacs
EASK ?= eask
.PHONY: clean checkdoc lint package install compile test
ci: clean package install compile
package:
@echo "Packaging..."
$(EASK) package
install:
@echo "Installing..."
$(EASK) install
compile:
@echo "Compiling..."
$(EASK) compile
test:
@echo "Testing..."
$(EASK) test ert ./test/*.el
checkdoc:
@echo "Run checkdoc..."
$(EASK) lint checkdoc
lint:
@echo "Run package-lint..."
$(EASK) lint package
clean:
$(EASK) clean all