This repository has been archived on 2022-10-03. You can view files and clone it, but cannot push or open issues or pull requests.
dsptl.el/Makefile

32 lines
494 B
Makefile

EMACS ?= emacs
EASK ?= eask
.PHONY: clean package install compile test checkdoc lint
# CI entry point
ci: clean package install compile
#ci: clean package install compile checkdoc lint test
package:
@echo "Packaging..."
$(EASK) package
install:
@echo "Installing..."
$(EASK) install
compile:
@echo "Compiling..."
$(EASK) compile
checkdoc:
@echo "Checking documentation..."
$(EASK) lint checkdoc --strict
lint:
@echo "Linting..."
$(EASK) lint package
clean:
$(EASK) clean-all