1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-20 11:33:09 -08:00

(bootstrap-doc): New target.

(bootstrap-emacs): Depend on it.
This commit is contained in:
Gerd Moellmann 2001-05-31 19:02:56 +00:00
parent 1ea98518d8
commit b14659e652
2 changed files with 12 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2001-05-31 Gerd Moellmann <gerd@gnu.org>
* Makefile.in (bootstrap-doc): New target.
(bootstrap-emacs): Depend on it.
* fileio.c (Fdo_auto_save): Don't try to create the directory of
auto-save-list-file-name when shutting down Emacs, because
creating the directory might signal an error, and leaves

View file

@ -1194,10 +1194,18 @@ bootstrap: bootstrap-emacs
bootstrap-temacs:
LC_ALL=C $(MAKE) $(MFLAGS) temacs ALL_CFLAGS="$(ALL_CFLAGS) -DPURESIZE=5000000 -I../src"
/* Build a DOC file. */
bootstrap-doc: ${libsrc}make-docfile
-rm -f ${etc}DOC
els=`echo ${shortlisp} ${SOME_MACHINE_LISP} \
| sed -e "s/\\.elc/.el/g"`; \
${libsrc}make-docfile -d ${srcdir} $$els ${obj} > ${etc}DOC
/* Dump an Emacs executable named bootstrap-emacs containing the
files from loadup.el in source form. */
bootstrap-emacs: bootstrap-temacs
bootstrap-emacs: bootstrap-temacs bootstrap-doc
#ifdef CANNOT_DUMP
ln temacs bootstrap-emacs
#else