diff options
author | Phillip Lord <phillip.lord@russet.org.uk> | 2016-10-27 08:07:05 +0100 |
---|---|---|
committer | Phillip Lord <phillip.lord@russet.org.uk> | 2016-12-13 22:15:32 +0000 |
commit | c27b645956a11fab1dd8fa189254d525390958f5 (patch) | |
tree | a32dc7bbc8758a5656b2be8f712614a9085592d6 /msdos | |
parent | 9e6618becaa15b104f18d54371f35f065f430f81 (diff) | |
download | emacs-c27b645956a11fab1dd8fa189254d525390958f5.tar.gz |
Replace ldefs-boot with a much smaller file
* Makefile.in (bootstrap-build,generate-ldefs-boot): New targets.
(bootstrap): Depend on bootstrap-build.
* admin/ldefs-clean.el: New file.
* lisp/Makefile.in (compile-first): Depend on loaddefs.el
* lisp/ldefs-boot.el: Remove.
* lisp/ldefs-boot-auto.el: New file.
* lisp/ldefs-boot-manual.el: New file.
* lisp/loadup.el: Load ldefs-boot-manual.el.
* src/emacs.c (generating_ldefs_boot): New variable.
(main): Check whether we are generating ldefs.
* src/eval.c (autoload-do-load): Dump autoload forms to stderr when
requested.
* src/lisp.h (generating_ldefs_boot): New variable.
* admin/gitmerge.el, admin/make-tarball.txt, admin/notes/copyright,
lisp/Makefile.in, lisp/cus-dep.el, lisp/emacs-lisp/elint.el,
lisp/finder.el, lisp/loadup.el, msdos/mainmake.v2: Update reference to
ldefs-boot.
* admin/update_autogen: Alter mechanism for ldefs-boot generation.
Diffstat (limited to 'msdos')
-rw-r--r-- | msdos/mainmake.v2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/msdos/mainmake.v2 b/msdos/mainmake.v2 index 98716ac5a34..f89caf928f6 100644 --- a/msdos/mainmake.v2 +++ b/msdos/mainmake.v2 @@ -156,7 +156,7 @@ TAGS tags: lib-src FRC cd lib-src if exist etags.exe mv -f etags.exe ../bin cd .. - - find $(CURDIR)/lisp -iname "*.el" -a -! -( -iname "*loaddefs.el" -o -iname "ldefs-boot.el" -) | ./bin/etags -o lisp/TAGS - + - find $(CURDIR)/lisp -iname "*.el" -a -! -( -iname "*loaddefs.el" -o -iname "ldefs-boot-auto.el" -) | ./bin/etags -o lisp/TAGS - cd $(CURDIR) cd src ../bin/etags --include=../lisp/TAGS \ |