branch: elpa/emacsql
commit af655d2e58f7c7630f272da8b41d0610defef78c
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
make: Minor tweaks
---
Makefile | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/Makefile b/Makefile
index 3626cb6f782..cd7a5628263 100644
--- a/Makefile
+++ b/Makefile
@@ -40,17 +40,17 @@ LOAD_PATH += -L ./tests
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 test - run tests)
- $(info make clean - remove byte-code and autoloads)
+ $(info make all -- Build lisp)
+ $(info make lisp -- Build lisp)
+ $(info make redo -- Build lisp from scratch)
+ $(info make test -- Run tests)
+ $(info make clean -- Remove built files)
@printf "\n"
redo: clean lisp
-lisp: $(ELCS) loaddefs
+lisp: $(ELCS) autoloads
-loaddefs: $(PKG)-autoloads.el
+autoloads: $(PKG)-autoloads.el
%.elc: %.el
@printf "Compiling $<\n"
@@ -61,7 +61,7 @@ check-declare:
@$(EMACS) -Q --batch $(EMACS_ARGS) $(LOAD_PATH) \
--eval "(check-declare-directory default-directory)"
-CLEAN = $(ELCS) $(TEST_ELCS) $(PKG)-autoloads.el
+CLEAN = $(ELCS) $(TEST_ELCS) $(PKG)-autoloads.el
clean:
@printf " Cleaning...\n"
@@ -69,7 +69,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)\