diff options
| author | Gerd Moellmann | 2001-05-31 19:02:56 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-05-31 19:02:56 +0000 |
| commit | b14659e652ee50cd70da508a0c5d962979c111af (patch) | |
| tree | 0e07be4d44d9fa687b7f3beaf05c5dbbeeb04f6e | |
| parent | 1ea98518d8922e3f9b3c7cb08c2a710e4fb63fa1 (diff) | |
| download | emacs-b14659e652ee50cd70da508a0c5d962979c111af.tar.gz emacs-b14659e652ee50cd70da508a0c5d962979c111af.zip | |
(bootstrap-doc): New target.
(bootstrap-emacs): Depend on it.
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/Makefile.in | 10 |
2 files changed, 12 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 1f0283fe4c2..a842e42d810 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2001-05-31 Gerd Moellmann <gerd@gnu.org> | 1 | 2001-05-31 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in (bootstrap-doc): New target. | ||
| 4 | (bootstrap-emacs): Depend on it. | ||
| 5 | |||
| 3 | * fileio.c (Fdo_auto_save): Don't try to create the directory of | 6 | * fileio.c (Fdo_auto_save): Don't try to create the directory of |
| 4 | auto-save-list-file-name when shutting down Emacs, because | 7 | auto-save-list-file-name when shutting down Emacs, because |
| 5 | creating the directory might signal an error, and leaves | 8 | creating the directory might signal an error, and leaves |
diff --git a/src/Makefile.in b/src/Makefile.in index 0ab4db066bd..f97214c29e3 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -1194,10 +1194,18 @@ bootstrap: bootstrap-emacs | |||
| 1194 | bootstrap-temacs: | 1194 | bootstrap-temacs: |
| 1195 | LC_ALL=C $(MAKE) $(MFLAGS) temacs ALL_CFLAGS="$(ALL_CFLAGS) -DPURESIZE=5000000 -I../src" | 1195 | LC_ALL=C $(MAKE) $(MFLAGS) temacs ALL_CFLAGS="$(ALL_CFLAGS) -DPURESIZE=5000000 -I../src" |
| 1196 | 1196 | ||
| 1197 | /* Build a DOC file. */ | ||
| 1198 | |||
| 1199 | bootstrap-doc: ${libsrc}make-docfile | ||
| 1200 | -rm -f ${etc}DOC | ||
| 1201 | els=`echo ${shortlisp} ${SOME_MACHINE_LISP} \ | ||
| 1202 | | sed -e "s/\\.elc/.el/g"`; \ | ||
| 1203 | ${libsrc}make-docfile -d ${srcdir} $$els ${obj} > ${etc}DOC | ||
| 1204 | |||
| 1197 | /* Dump an Emacs executable named bootstrap-emacs containing the | 1205 | /* Dump an Emacs executable named bootstrap-emacs containing the |
| 1198 | files from loadup.el in source form. */ | 1206 | files from loadup.el in source form. */ |
| 1199 | 1207 | ||
| 1200 | bootstrap-emacs: bootstrap-temacs | 1208 | bootstrap-emacs: bootstrap-temacs bootstrap-doc |
| 1201 | #ifdef CANNOT_DUMP | 1209 | #ifdef CANNOT_DUMP |
| 1202 | ln temacs bootstrap-emacs | 1210 | ln temacs bootstrap-emacs |
| 1203 | #else | 1211 | #else |