-
Notifications
You must be signed in to change notification settings - Fork 13
/
Makefile
51 lines (37 loc) · 1000 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
47
48
49
50
51
## Makefile
all:
REPO_USER := ChillarAnand
PACKAGE_NAME := real-auto-save
REPO_NAME := real-auto-save
EMACS ?= emacs
ELS := $(shell cask files)
##################################################
.PHONY: all
all: help
help:
$(info )
$(info Commands)
$(info ========)
$(info - make # Show this message)
$(info - make build # Compile Elisp files)
$(info - make test # Test $(PACKAGE_NAME))
$(info )
$(info Cleaning)
$(info ========)
$(info - make clean # Clean compiled files)
$(info )
$(info This Makefile required `cask`)
$(info See https://github.com/$(REPO_USER)/$(REPO_NAME)#contribution)
$(info )
##############################
%.elc: %.el .cask
cask exec $(EMACS) --batch -f batch-byte-compile $<
.cask: Cask
cask install
touch $@
##############################
build: $(ELS:%.el=%.elc)
test: build
cask exec $(EMACS) --batch -L . -l $(PACKAGE_NAME)-tests.el -f cort-test-run
clean:
rm -rf $(ELS:%.el=%.elc) .cask