From fed8edcaae615f981be4041335d69228edb9e104 Mon Sep 17 00:00:00 2001 From: Jonas Bernoulli Date: Fri, 31 Oct 2025 01:16:53 +0100 Subject: make: Minor tweaks --- Makefile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index df71d2a..120214a 100644 --- a/Makefile +++ b/Makefile @@ -22,18 +22,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" @@ -48,7 +48,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" @@ -56,7 +56,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)\ -- cgit v1.0