forked from nlamirault/timonier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
100 lines (77 loc) · 2.43 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
89
90
91
92
93
94
95
96
97
98
99
100
# Copyright (C) 2016 Nicolas Lamirault <[email protected]>
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
APP = timonier
SHELL = /bin/bash
EMACS ?= emacs
EMACSFLAGS = -L .
CASK = cask
VAGRANT = vagrant
VERSION=$(shell \
grep Version timonier.el \
|awk -F':' '{print $$2}' \
|sed -e "s/[^0-9.]//g")
PACKAGE_FOLDER=$(APP)-$(VERSION)
ARCHIVE=$(PACKAGE_FOLDER).tar
ELS = $(shell find . -name "*.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: build
@echo -e "$(OK_COLOR)[$(APP)] Unit tests$(NO_COLOR)"
@$(CASK) exec ert-runner
.PHONY: virtual-test
virtual-test: check-env
@$(VAGRANT) up
@$(VAGRANT) ssh -c "source /tmp/.emacs-timonier.rc && make -C /vagrant EMACS=$(EMACS) clean init test"
.PHONY: virtual-clean
virtual-clean:
@$(VAGRANT) destroy
.PHONY: clean
clean :
@echo -e "$(OK_COLOR)[$(APP)] Cleanup$(NO_COLOR)"
@rm -fr $(OBJECTS) elpa $(APP)-pkg.el $(APP)-pkg.elc $(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 $<