aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-09-27 19:50:53 +0000
committerRichard M. Stallman1994-09-27 19:50:53 +0000
commit55c6775fcbfedef9266f57d63e5bd5cd3412def0 (patch)
tree25f381abd4fd85e4ab3f9d1c18e7c194a4fc5673 /src
parent9c0f2dac9b9e8672dedfbe23b6e4eb1340169861 (diff)
downloademacs-55c6775fcbfedef9266f57d63e5bd5cd3412def0.tar.gz
emacs-55c6775fcbfedef9266f57d63e5bd5cd3412def0.zip
(${etc}DOC): Run make-docfile twice--two batches.
(strftime.o, mktime.o): New target. (obj): Add strftime.o and mktime.o.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index e927969747f..c4c5f957367 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -456,7 +456,7 @@ obj= dispnew.o frame.o scroll.o xdisp.o window.o \
456 eval.o floatfns.o fns.o print.o lread.o \ 456 eval.o floatfns.o fns.o print.o lread.o \
457 abbrev.o syntax.o UNEXEC mocklisp.o bytecode.o \ 457 abbrev.o syntax.o UNEXEC mocklisp.o bytecode.o \
458 process.o callproc.o \ 458 process.o callproc.o \
459 doprnt.o strftime.o GETLOADAVG_OBJ 459 doprnt.o strftime.o mktime.o GETLOADAVG_OBJ
460 460
461/* Object files used on some machine or other. 461/* Object files used on some machine or other.
462 These go in the DOC file on all machines 462 These go in the DOC file on all machines
@@ -619,10 +619,12 @@ emacs: temacs ${etc}DOC ${lisp}
619#endif /* ! defined (HAVE_SHM) */ 619#endif /* ! defined (HAVE_SHM) */
620#endif /* ! defined (CANNOT_DUMP) */ 620#endif /* ! defined (CANNOT_DUMP) */
621 621
622# We run make-docfile twice because the command line may get too long
623# on some systems.
622${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp} 624${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp}
623 -rm -f ${etc}DOC 625 -rm -f ${etc}DOC
624 ${libsrc}make-docfile -d ${srcdir} ${obj} ${SOME_MACHINE_OBJECTS} \ 626 ${libsrc}make-docfile -d ${srcdir} ${obj} ${SOME_MACHINE_OBJECTS} > ${etc}DOC
625 ${lisp} > ${etc}DOC 627 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${lisp}
626 628
627${libsrc}make-docfile: 629${libsrc}make-docfile:
628 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile 630 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile
@@ -811,6 +813,7 @@ keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \
811lastfile.o: lastfile.c $(config_h) 813lastfile.o: lastfile.c $(config_h)
812macros.o: macros.c window.h buffer.h commands.h macros.h $(config_h) 814macros.o: macros.c window.h buffer.h commands.h macros.h $(config_h)
813malloc.o: malloc.c $(config_h) 815malloc.o: malloc.c $(config_h)
816mktime.o: mktime.c $(config_h)
814gmalloc.o: gmalloc.c $(config_h) 817gmalloc.o: gmalloc.c $(config_h)
815ralloc.o: ralloc.c $(config_h) 818ralloc.o: ralloc.c $(config_h)
816vm-limit.o: vm-limit.c mem-limits.h $(config_h) 819vm-limit.o: vm-limit.c mem-limits.h $(config_h)