We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d13e14c commit 5927f8fCopy full SHA for 5927f8f
Makefile
@@ -64,6 +64,14 @@ test: build
64
$(EMACSFLAGS) \
65
-l test/run-tests
66
67
+.PHONY: clean
68
+clean :
69
+ @echo -e "$(OK_COLOR)[$(APP)] Cleanup$(NO_COLOR)"
70
+ @rm -fr $(OBJECTS) elpa $(ARCHIVE).gz
71
+
72
+reset : clean
73
+ @rm -rf .cask
74
75
pkg-file:
76
$(CASK) pkg-file
77
@@ -80,14 +88,6 @@ package: clean pkg-el
80
88
ci : build
81
89
@${CASK} exec ert-runner --no-win < /dev/tty
82
90
83
-.PHONY: clean
84
-clean :
85
- @echo -e "$(OK_COLOR)[$(APP)] Cleanup$(NO_COLOR)"
86
- @rm -fr $(OBJECTS) elpa $(ARCHIVE).gz
87
-
-reset : clean
- @rm -rf .cask # Clean packages installed for development
91
%.elc : %.el
92
@$(CASK) exec $(EMACS) --no-site-file --no-site-lisp --batch \
93
0 commit comments