branch: elpa/cond-let
commit caa77ac87843f3e55c3078ee861c685103d733d7
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 fd1d097873e..5e8691f7907 100644
--- a/Makefile
+++ b/Makefile
@@ -20,18 +20,18 @@ 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 test - run tests)
- $(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 test -- Run tests)
+ $(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"
@@ -46,7 +46,7 @@ test: lisp
@$(EMACS) -Q --batch $(EMACS_ARGS) $(LOAD_PATH) \
-l ert -l $(PKG)-tests.el -f ert-run-tests-batch-and-exit
-CLEAN = $(ELCS) $(PKG)-autoloads.el
+CLEAN = $(ELCS) $(PKG)-autoloads.el
clean:
@printf " Cleaning...\n"
@@ -54,7 +54,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)\