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 6dc4d4b commit b33b916Copy full SHA for b33b916
Makefile
@@ -26,14 +26,19 @@ help:
26
$(info make clean - remove generated files)
27
@printf "\n"
28
29
-lisp: $(ELCS) loaddefs
+lisp: $(ELCS) loaddefs check-declare
30
31
loaddefs: $(PKG)-autoloads.el
32
33
%.elc: %.el
34
@printf "Compiling $<\n"
35
@$(EMACS) -Q --batch $(EMACS_ARGS) $(LOAD_PATH) -f batch-byte-compile $<
36
37
+check-declare:
38
+ @printf " Checking function declarations\n"
39
+ @$(EMACS) -Q --batch $(EMACS_ARGS) $(LOAD_PATH) \
40
+ --eval "(check-declare-directory default-directory)"
41
+
42
CLEAN = $(ELCS) $(PKG)-autoloads.el
43
44
clean:
0 commit comments