File tree 3 files changed +14
-3
lines changed
3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 6
6
# Emacs byte-compiled files
7
7
* .elc
8
8
.cask
9
+ elpa *
Original file line number Diff line number Diff line change 27
27
### Changes
28
28
29
29
* Change the accepted values of ` clojure-indent-style ` from keywords to symbols.
30
+ * [ #503 ] ( https://github.com/clojure-emacs/clojure-mode/pull/503 ) : Fix Makefile so that we can compile again.
30
31
31
32
## 5.9.1 (2018-08-27)
32
33
Original file line number Diff line number Diff line change @@ -8,14 +8,23 @@ PKGDIR := $(shell EMACS=$(EMACS) $(CASK) package-directory)
8
8
SRCS = $(wildcard * .el)
9
9
OBJS = $(SRCS:.el=.elc )
10
10
11
- .PHONY : compile test clean
11
+ .PHONY : compile test clean elpa
12
12
13
- elpa :
13
+ all : compile
14
+
15
+ elpa-$(EMACS ) :
14
16
$(CASK ) install
15
17
$(CASK ) update
16
18
touch $@
17
19
18
- compile : $(OBJS )
20
+ elpa : elpa-$(EMACS )
21
+
22
+ elpaclean :
23
+ rm -f elpa*
24
+ rm -rf .cask # Clean packages installed for development
25
+
26
+ compile : elpa
27
+ $(CASK ) build
19
28
20
29
clean :
21
30
rm -f $(OBJS )
You can’t perform that action at this time.
0 commit comments