We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d35275b commit 71c82e9Copy full SHA for 71c82e9
Makefile
@@ -42,11 +42,16 @@ install: package
42
--eval '(package-install-file "$(PACKAGE)")'
43
44
clean:
45
-## Cleans the dist directory.
46
- rm -rf dist
+## Cleans the dist directory and *.elc.
+ rm -rf dist *.elc
47
48
test:
49
## Tests the package.
50
+ $(CASK) exec $(EMACS) --batch -q \
51
+ --eval "(add-to-list 'load-path \""$(shell readlink -f .)"\")" \
52
+ --eval "(add-to-list 'load-path \""$(shell readlink -f .)"/test\")" \
53
+ -f batch-byte-compile \
54
+ *.el
55
$(CASK) exec $(EMACS) --batch -q \
56
--eval "(add-to-list 'load-path \""$(shell readlink -f .)"\")" \
57
--eval "(add-to-list 'load-path \""$(shell readlink -f .)"/test\")" \
0 commit comments