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 7228580 commit 8baf1deCopy full SHA for 8baf1de
Makefile
@@ -34,14 +34,19 @@ help:
34
$(info make clean - remove generated files)
35
@printf "\n"
36
37
-lisp: $(ELCS) loaddefs
+lisp: $(ELCS) loaddefs check-declare
38
39
loaddefs: $(PKG)-autoloads.el
40
41
%.elc: %.el
42
@printf "Compiling $<\n"
43
@$(EMACS) -Q --batch $(EMACS_ARGS) $(LOAD_PATH) -f batch-byte-compile $<
44
45
+check-declare:
46
+ @printf " Checking function declarations\n"
47
+ @$(EMACS) -Q --batch $(EMACS_ARGS) $(LOAD_PATH) \
48
+ --eval "(check-declare-directory default-directory)"
49
+
50
CLEAN = $(ELCS) $(PKG)-autoloads.el
51
52
clean:
0 commit comments