diff options
| author | Richard M. Stallman | 1994-09-27 19:50:53 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-09-27 19:50:53 +0000 |
| commit | 55c6775fcbfedef9266f57d63e5bd5cd3412def0 (patch) | |
| tree | 25f381abd4fd85e4ab3f9d1c18e7c194a4fc5673 | |
| parent | 9c0f2dac9b9e8672dedfbe23b6e4eb1340169861 (diff) | |
| download | emacs-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.
| -rw-r--r-- | src/Makefile.in | 9 |
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 \ | |||
| 811 | lastfile.o: lastfile.c $(config_h) | 813 | lastfile.o: lastfile.c $(config_h) |
| 812 | macros.o: macros.c window.h buffer.h commands.h macros.h $(config_h) | 814 | macros.o: macros.c window.h buffer.h commands.h macros.h $(config_h) |
| 813 | malloc.o: malloc.c $(config_h) | 815 | malloc.o: malloc.c $(config_h) |
| 816 | mktime.o: mktime.c $(config_h) | ||
| 814 | gmalloc.o: gmalloc.c $(config_h) | 817 | gmalloc.o: gmalloc.c $(config_h) |
| 815 | ralloc.o: ralloc.c $(config_h) | 818 | ralloc.o: ralloc.c $(config_h) |
| 816 | vm-limit.o: vm-limit.c mem-limits.h $(config_h) | 819 | vm-limit.o: vm-limit.c mem-limits.h $(config_h) |