diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2025-10-31 01:16:53 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2025-10-31 01:16:53 +0100 |
| commit | fed8edcaae615f981be4041335d69228edb9e104 (patch) | |
| tree | 123517a7acf6085d11b1586fe10822f47bd5efc8 /Makefile | |
| parent | de2b5eda6e37958411ca0c0131621ec054fbe57c (diff) | |
make: Minor tweaks
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -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)\ |
