Skip to content

Commit 03ab345

Browse files
committed
make: Minor tweaks
1 parent a28c449 commit 03ab345

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ LOAD_PATH += -L .
1919
all: lisp
2020

2121
help:
22-
$(info make all - generate byte-code and autoloads)
23-
$(info make lisp - generate byte-code and autoloads)
24-
$(info make redo - re-generate byte-code and autoloads)
25-
$(info make clean - remove generated files)
22+
$(info make all -- Build lisp)
23+
$(info make lisp -- Build lisp)
24+
$(info make redo -- Build lisp from scratch)
25+
$(info make clean -- Remove built files)
2626
@printf "\n"
2727

2828
redo: clean lisp
2929

30-
lisp: $(ELCS) loaddefs check-declare
30+
lisp: $(ELCS) autoloads check-declare
3131

32-
loaddefs: $(PKG)-autoloads.el
32+
autoloads: $(PKG)-autoloads.el
3333

3434
%.elc: %.el
3535
@printf "Compiling $<\n"
@@ -40,15 +40,15 @@ check-declare:
4040
@$(EMACS) -Q --batch $(EMACS_ARGS) $(LOAD_PATH) \
4141
--eval "(check-declare-directory default-directory)"
4242

43-
CLEAN = $(ELCS) $(PKG)-autoloads.el
43+
CLEAN = $(ELCS) $(PKG)-autoloads.el
4444

4545
clean:
4646
@printf " Cleaning...\n"
4747
@rm -rf $(CLEAN)
4848

4949
$(PKG)-autoloads.el: $(ELS)
5050
@printf " Creating $@\n"
51-
@$(EMACS) -Q --batch -l autoload -l cl-lib --eval "\
51+
@$(EMACS) -Q --batch -l autoload --eval "\
5252
(let* ((file (expand-file-name \"$@\"))\
5353
(generated-autoload-file file)\
5454
(coding-system-for-write 'utf-8-emacs-unix)\

0 commit comments

Comments
 (0)