emacs-vs-dark-theme/Makefile
2022-03-18 01:47:28 +08:00

30 lines
481 B
Makefile

SHELL := /usr/bin/env bash
EMACS ?= emacs
EASK ?= eask
TEST-FILES := $(shell ls test/vs-dark-theme-*.el)
.PHONY: clean checkdoc lint install compile unix-test
ci: clean install compile
clean:
@echo "Cleaning..."
$(EASK) clean-all
install:
@echo "Installing..."
$(EASK) install
compile:
@echo "Compiling..."
$(EASK) compile
lint:
@echo "Linting..."
$(EASK) lint
unix-test:
@echo "Testing..."
$(EASK) exec ert-runner -L . $(LOAD-TEST-FILES) -t '!no-win' -t '!org'