aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile.in
diff options
context:
space:
mode:
authorGerd Moellmann2001-05-31 19:02:56 +0000
committerGerd Moellmann2001-05-31 19:02:56 +0000
commitb14659e652ee50cd70da508a0c5d962979c111af (patch)
tree0e07be4d44d9fa687b7f3beaf05c5dbbeeb04f6e /src/Makefile.in
parent1ea98518d8922e3f9b3c7cb08c2a710e4fb63fa1 (diff)
downloademacs-b14659e652ee50cd70da508a0c5d962979c111af.tar.gz
emacs-b14659e652ee50cd70da508a0c5d962979c111af.zip
(bootstrap-doc): New target.
(bootstrap-emacs): Depend on it.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in10
1 files changed, 9 insertions, 1 deletions
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
1194bootstrap-temacs: 1194bootstrap-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
1199bootstrap-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
1200bootstrap-emacs: bootstrap-temacs 1208bootstrap-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