forked from radian-software/radian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
48 lines (37 loc) · 1.06 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
VERSION ?=
CMD ?=
longlines_files := $(shell find . -name .git -prune -o -print)
.PHONY: help
help: ## Show this message
@echo "usage:" >&2
@grep -h "[#]# " $(MAKEFILE_LIST) | \
sed 's/^/ make /' | \
sed 's/:[^#]*[#]# /|/' | \
sed 's/%/LANG/' | \
column -t -s'|' >&2
.PHONY: link
link: ## Symlink dotfiles into home directory
@scripts/symlink-dotfiles.bash
.PHONY: build
build: ## Make sure straight.el dependencies are built
@scripts/build.bash
.PHONY: compile
compile: ## Byte-compile radian.el
@scripts/byte-compile.bash
.PHONY: checkdoc
checkdoc: ## Check docstring style in radian.el
@scripts/checkdoc.bash
.PHONY: longlines
longlines: ## Check for long lines
@scripts/check-line-length.bash
.PHONY: validate
validate: ## Validate el-patches
@scripts/validate-patches.bash
.PHONY: lint
lint: build compile validate checkdoc longlines ## Run all linters
.PHONY: clean
clean: ## Remove build artifacts
@rm -f emacs/radian.elc
.PHONY: docker
docker: ## Start a Docker shell; e.g. make docker VERSION=25.3
@scripts/docker.bash "$(VERSION)" "$(CMD)"