forked from Emacs-Kotlin-Mode-Maintainers/kotlin-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
56 lines (46 loc) · 1.38 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
CASK ?= cask
EMACS ?= emacs
VERSION := $(shell EMACS=$(EMACS) $(CASK) version)
SRC = $(wildcard *.el)
PACKAGE = dist/kotlin-mode-$(VERSION).tar
.PHONY: help all deps package install test clean
help:
## Shows this message.
# Process this Makefile with following filters
#
# - Remove empty line.
# - Remove line starting with whitespace, dot, or uppercase letters.
# - Remove line containing ## no-doc.
# - Remove after colon if the line is not a comment line.
# - Replace /^## / to " ".
# - Remove other comment lines.
# - Insert newline before rules.
@sed -e '/^\s*$$/d; /^[ .A-Z]/d; /## no-doc/d; s/^\([^#][^:]*\):.*/\1/; s/^## / /; /^#/d; s/^[^ ]/\n&/' Makefile
all: package
## Builds the package.
deps:
## Installs the dependencies.
$(CASK) install
$(PACKAGE): $(SRC) deps ## no-doc
rm -rf dist
$(CASK) package
package: $(PACKAGE)
## Builds the package.
install: package
## Installs the package.
$(CASK) exec $(EMACS) --batch \
-l package \
-f package-initialize \
-f package-refresh-contents \
--eval '(package-install-file "$(PACKAGE)")'
clean:
## Cleans the dist directory and *.elc.
rm -rf dist *.elc
test:
## Tests the package.
$(CASK) exec $(EMACS) --batch -q \
--eval "(add-to-list 'load-path \""$(shell readlink -f .)"\")" \
--eval "(add-to-list 'load-path \""$(shell readlink -f .)"/test\")" \
-f batch-byte-compile \
*.el
cask exec ert-runner -L . -L test