From b14659e652ee50cd70da508a0c5d962979c111af Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Thu, 31 May 2001 19:02:56 +0000 Subject: [PATCH] (bootstrap-doc): New target. (bootstrap-emacs): Depend on it. --- src/ChangeLog | 3 +++ src/Makefile.in | 10 +++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 1f0283fe4c..a842e42d81 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2001-05-31 Gerd Moellmann + * 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 diff --git a/src/Makefile.in b/src/Makefile.in index 0ab4db066b..f97214c29e 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -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 -- 2.20.1