-
Notifications
You must be signed in to change notification settings - Fork 30
/
Makefile
88 lines (67 loc) · 2.24 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Copyright (C) 2014, 2015 Nicolas Lamirault <[email protected]>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
APP = gitlab
EMACS = emacs
EMACSFLAGS = -L .
CASK = cask
VERSION=$(shell \
grep Version gitlab.el \
|awk -F':' '{print $$2}' \
|sed -e "s/[^0-9.]//g")
PACKAGE_FOLDER=$(APP)-$(VERSION)
ARCHIVE=$(PACKAGE_FOLDER).tar
ELS = $(wildcard *.el)
OBJECTS = $(ELS:.el=.elc)
NO_COLOR=\033[0m
OK_COLOR=\033[32;01m
ERROR_COLOR=\033[31;01m
WARN_COLOR=\033[33;01m
all: help
help:
@echo -e "$(OK_COLOR)==== $(APP) [$(VERSION)]====$(NO_COLOR)"
@echo -e "$(WARN_COLOR)- init$(NO_COLOR) : initialize development environment"
@echo -e "$(WARN_COLOR)- build$(NO_COLOR) : build project"
@echo -e "$(WARN_COLOR)- test$(NO_COLOR) : launch unit tests"
@echo -e "$(WARN_COLOR)- clean$(NO_COLOR) : cleanup"
@echo -e "$(WARN_COLOR)- package$(NO_COLOR) : packaging"
init:
@echo -e "$(OK_COLOR)[$(APP)] Initialize environment$(NO_COLOR)"
@$(CASK) --dev install
elpa:
@echo -e "$(OK_COLOR)[$(APP)] Build$(NO_COLOR)"
@$(CASK) install
@$(CASK) update
@touch $@
.PHONY: build
build : elpa $(OBJECTS)
test: clean build
@echo -e "$(OK_COLOR)[$(APP)] Unit tests$(NO_COLOR)"
@$(CASK) exec ert-runner
.PHONY: clean
clean :
@echo -e "$(OK_COLOR)[$(APP)] Cleanup$(NO_COLOR)"
@rm -fr $(APP)-pkg.el $(OBJECTS) elpa $(ARCHIVE).gz
reset : clean
@rm -rf .cask
pkg-file:
@$(CASK) pkg-file
pkg-el: pkg-file
@$(CASK) package
package: clean pkg-el
@echo -e "$(OK_COLOR)[$(APP)] Packaging$(NO_COLOR)"
cp dist/$(ARCHIVE) .
gzip $(ARCHIVE)
rm -fr dist
%.elc : %.el
@$(CASK) exec $(EMACS) --no-site-file --no-site-lisp --batch \
$(EMACSFLAGS) \
-f batch-byte-compile $<