File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -19,17 +19,17 @@ LOAD_PATH += -L .
1919all : lisp
2020
2121help :
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
2828redo : 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
4545clean :
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)\
You can’t perform that action at this time.
0 commit comments