File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 66# Emacs byte-compiled files
77* .elc
88.cask
9+ elpa *
Original file line number Diff line number Diff line change 2727### Changes
2828
2929* 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.
3031
3132## 5.9.1 (2018-08-27)
3233
Original file line number Diff line number Diff line change @@ -8,14 +8,23 @@ PKGDIR := $(shell EMACS=$(EMACS) $(CASK) package-directory)
88SRCS = $(wildcard * .el)
99OBJS = $(SRCS:.el=.elc )
1010
11- .PHONY : compile test clean
11+ .PHONY : compile test clean elpa
1212
13- elpa :
13+ all : compile
14+
15+ elpa-$(EMACS ) :
1416 $(CASK ) install
1517 $(CASK ) update
1618 touch $@
1719
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
1928
2029clean :
2130 rm -f $(OBJS )
You can’t perform that action at this time.
0 commit comments