-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
46 lines (34 loc) · 879 Bytes
/
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
## Makefile
all:
REPO_USER := emacs-jp
PACKAGE_NAME := dmacro
REPO_NAME := dmacro
EMACS ?= emacs
##################################################
.PHONY: all help build test lint clean
all: help
help:
$(info )
$(info Commands)
$(info ========)
$(info - make # Show this help)
$(info - make build # Compile Elisp files)
$(info - make test # Compile Elisp files and test $(PACKAGE_NAME))
$(info - make lint # Lint Elisp files)
$(info )
$(info Cleaning)
$(info ========)
$(info - make clean # Clean compiled files)
$(info )
$(info This Makefile required `keg`)
$(info See https://github.com/$(REPO_USER)/$(REPO_NAME)#contribution)
$(info )
##############################
build:
keg build
lint:
keg lint
test: build
keg exec $(EMACS) --batch -l $(PACKAGE_NAME)-tests.el -f cort-test-run
clean:
keg clean