branch: elpa/keycast
commit 5cda6bd32d377ad92dff52a55c1491da442f4541
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>

    make: Minor tweaks
---
 Makefile | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/Makefile b/Makefile
index c7bc6c89ad2..f2c0713b973 100644
--- a/Makefile
+++ b/Makefile
@@ -16,17 +16,17 @@ LOAD_PATH  += -L .
 all: lisp
 
 help:
-       $(info make all          - generate byte-code and autoloads)
-       $(info make lisp         - generate byte-code and autoloads)
-       $(info make redo         - re-generate byte-code and autoloads)
-       $(info make clean        - remove generated files)
+       $(info make all        -- Build lisp)
+       $(info make lisp       -- Build lisp)
+       $(info make redo       -- Build lisp from scratch)
+       $(info make clean      -- Remove built files)
        @printf "\n"
 
 redo: clean lisp
 
-lisp: $(ELCS) loaddefs check-declare
+lisp: $(ELCS) autoloads check-declare
 
-loaddefs: $(PKG)-autoloads.el
+autoloads: $(PKG)-autoloads.el
 
 %.elc: %.el
        @printf "Compiling $<\n"
@@ -37,7 +37,7 @@ check-declare:
        @$(EMACS) -Q --batch $(EMACS_ARGS) $(LOAD_PATH) \
        --eval "(check-declare-directory default-directory)"
 
-CLEAN  = $(ELCS) $(PKG)-autoloads.el
+CLEAN = $(ELCS) $(PKG)-autoloads.el
 
 clean:
        @printf " Cleaning...\n"
@@ -45,7 +45,7 @@ clean:
 
 $(PKG)-autoloads.el: $(ELS)
        @printf " Creating $@\n"
-       @$(EMACS) -Q --batch -l autoload -l cl-lib --eval "\
+       @$(EMACS) -Q --batch -l autoload --eval "\
 (let* ((file (expand-file-name \"$@\"))\
        (generated-autoload-file file)\
        (coding-system-for-write 'utf-8-emacs-unix)\

Reply via email to