password-gen.el/Makefile
Lucien Cartier-Tilet 9b0a96a894
Some checks failed
CI / build (snapshot) (push) Waiting to run
CI / build (26.3) (push) Failing after 1m39s
CI / build (27.2) (push) Failing after 1m44s
CI / build (28.2) (push) Failing after 2m5s
CI / build (29.1) (push) Has been cancelled
ci: update Makepkg and add CI
2024-02-08 05:10:01 +01:00

39 lines
610 B
Makefile

EMACS ?= emacs
EASK ?= eask
.PHONY: clean package install compile test checkdoc lint
ci: clean package install compile checkdoc lint
package:
@echo "Packaging..."
$(EASK) package
install:
@echo "Installing..."
$(EASK) install
compile:
@echo "Compiling..."
$(EASK) compile
test:
@echo "Testing..."
$(EASK) install-deps --dev
$(EASK) test ert ./test/*.el
checkdoc:
@echo "Checking documentation..."
$(EASK) lint checkdoc --strict
lint:
@echo "Linting..."
$(EASK) lint declare
$(EASK) lint indent
$(EASK) lint keywords
$(EASK) lint package
$(EASK) lint regexps
clean:
$(EASK) clean all