-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
58 lines (41 loc) · 1.17 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
49
50
51
52
53
54
55
56
57
58
## Makefile
all:
REPO_USER := conao3
PACKAGE_NAME := iceberg-theme
REPO_NAME := iceberg-theme.el
EMACS ?= emacs
ELS := $(shell cask files)
GIT_HOOKS := pre-commit
##################################################
.PHONY: all git-hook help build test clean
all: git-hook help
git-hook: $(GIT_HOOKS:%=.git/hooks/%)
.git/hooks/%: git-hooks/%
cp -a $< $@
help:
$(info )
$(info Commands)
$(info ========)
$(info - make # Install git-hook to your local .git folder)
$(info - make build # Compile Elisp files)
$(info - make test # Compile Elisp files and 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) -Q --batch -f batch-byte-compile $<
.cask: Cask
cask install
touch $@
##############################
build: $(ELS:%.el=%.elc)
test: build
cask exec $(EMACS) -Q --batch -L . -l $(PACKAGE_NAME)-tests.el -f cort-test-run
clean:
rm -rf $(ELS:%.el=%.elc) .cask