diff options
| author | Richard M. Stallman | 1994-05-23 07:19:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-23 07:19:41 +0000 |
| commit | d95ebf76705396637d602691dacb476afb32577e (patch) | |
| tree | 41182e877871320351b23b2ae2a9cc4fc05ae15b /src | |
| parent | afce6ded2dc010a6e6cd7eb78f04d39aeda35812 (diff) | |
| download | emacs-d95ebf76705396637d602691dacb476afb32577e.tar.gz emacs-d95ebf76705396637d602691dacb476afb32577e.zip | |
(${etc}DOC): Ignore error from rm.
(MSDOS_SUPPORT): New variable.
(lisp): Use MSDOS_SUPPORT.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index d1f699d9797..9a45fb83246 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -525,6 +525,12 @@ otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj) | |||
| 525 | #define VMS_SUPPORT | 525 | #define VMS_SUPPORT |
| 526 | #endif | 526 | #endif |
| 527 | 527 | ||
| 528 | #ifdef MSDOS | ||
| 529 | #define MSDOS_SUPPORT ${lispdir}ls-lisp.elc ${lispdir}disp-tab.elc ${lispdir}dos-fns.elc ${lispdir}mouse.elc | ||
| 530 | #else | ||
| 531 | #define MSDOS_SUPPORT | ||
| 532 | #endif | ||
| 533 | |||
| 528 | /* List of Lisp files loaded into the dumped Emacs. It's arranged | 534 | /* List of Lisp files loaded into the dumped Emacs. It's arranged |
| 529 | like this because it's easier to generate it semi-mechanically from | 535 | like this because it's easier to generate it semi-mechanically from |
| 530 | loadup.el this way. | 536 | loadup.el this way. |
| @@ -560,6 +566,7 @@ lisp= \ | |||
| 560 | ${lispdir}text-mode.elc \ | 566 | ${lispdir}text-mode.elc \ |
| 561 | ${lispdir}vc-hooks.elc \ | 567 | ${lispdir}vc-hooks.elc \ |
| 562 | VMS_SUPPORT \ | 568 | VMS_SUPPORT \ |
| 569 | MSDOS_SUPPORT \ | ||
| 563 | ${lispdir}window.elc \ | 570 | ${lispdir}window.elc \ |
| 564 | ${lispdir}version.el | 571 | ${lispdir}version.el |
| 565 | 572 | ||
| @@ -600,7 +607,7 @@ emacs: temacs ${etc}DOC ${lisp} | |||
| 600 | #endif /* ! defined (CANNOT_DUMP) */ | 607 | #endif /* ! defined (CANNOT_DUMP) */ |
| 601 | 608 | ||
| 602 | ${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp} | 609 | ${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp} |
| 603 | rm -f ${etc}DOC | 610 | -rm -f ${etc}DOC |
| 604 | ${libsrc}make-docfile -d ${srcdir} ${obj} ${SOME_MACHINE_OBJECTS} \ | 611 | ${libsrc}make-docfile -d ${srcdir} ${obj} ${SOME_MACHINE_OBJECTS} \ |
| 605 | ${lisp} > ${etc}DOC | 612 | ${lisp} > ${etc}DOC |
| 606 | 613 | ||