-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (30 loc) · 682 Bytes
/
Makefile
File metadata and controls
41 lines (30 loc) · 682 Bytes
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
EMACS ?= emacs
EASK ?= eask
.PHONY: clean checkdoc lint package install compile test
ci: clean package install compile
build-source:
@echo "Building source..."
$(EASK) load "scripts/generate-source.el" --allow-error
generate_badges_system:
@echo "Generating system badges.."
@$(EASK) load "scripts/generate-badges-system.el"
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