Skip to content

Commit e144b33

Browse files
arichiardibbatsov
authored andcommitted
Improve the Makefile commands
This also gets rid of one step in the CircleCI configuration.
1 parent 8eaf885 commit e144b33

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

.circleci/config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ default: &default-steps
55
steps:
66
- checkout
77
- run: apt-get update && apt-get install make
8-
- run: make elpa
98
- run: make test
109

1110
# Enumerated list of Emacs versions

Makefile

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
1-
version:
2-
emacs --version
1+
.PHONY: clean version test
32

4-
test : version
5-
cask exec buttercup -L .
3+
all: build
64

7-
elpa:
5+
clean:
6+
rm -rf .cask
7+
8+
.cask:
89
cask install
910
cask update
11+
12+
version:
13+
emacs --version
14+
15+
build: version .cask
16+
cask build
17+
18+
test: version .cask
19+
cask exec buttercup -L .

0 commit comments

Comments
 (0)