diff options
| author | Richard M. Stallman | 1994-01-01 11:55:19 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-01-01 11:55:19 +0000 |
| commit | 229c1c6a140a8b8bc6de9b0a6abf97f39dadb591 (patch) | |
| tree | 4d2801b7583944d240017c26824d3ba7494bd44a /src | |
| parent | f7cf7ffe36fb4a18e2fc873431b87188c80fb9f1 (diff) | |
| download | emacs-229c1c6a140a8b8bc6de9b0a6abf97f39dadb591.tar.gz emacs-229c1c6a140a8b8bc6de9b0a6abf97f39dadb591.zip | |
(SOME_MACHINE_OBJECTS): New var.
(${etc}DOC): Use SOME_MACHINE_OBJECTS, not OBJECTS_MACHINE or OBJECTS_SYSTEM.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index c775c31cf15..549f147e90f 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -406,6 +406,11 @@ obj= dispnew.o frame.o scroll.o xdisp.o window.o \ | |||
| 406 | process.o callproc.o \ | 406 | process.o callproc.o \ |
| 407 | doprnt.o GETLOADAVG_OBJ | 407 | doprnt.o GETLOADAVG_OBJ |
| 408 | 408 | ||
| 409 | /* Object files used on some machine or other. | ||
| 410 | These go in the DOC file on all machines | ||
| 411 | in case they are needed there. */ | ||
| 412 | SOME_MACHINE_OBJECTS = sunfns.o | ||
| 413 | |||
| 409 | #ifdef TERMINFO | 414 | #ifdef TERMINFO |
| 410 | /* Used to be -ltermcap here. If your machine needs that, | 415 | /* Used to be -ltermcap here. If your machine needs that, |
| 411 | define LIBS_TERMCAP in the m/*.h file. */ | 416 | define LIBS_TERMCAP in the m/*.h file. */ |
| @@ -548,9 +553,9 @@ emacs: temacs ${etc}DOC ${lisp} | |||
| 548 | #endif /* ! defined (HAVE_SHM) */ | 553 | #endif /* ! defined (HAVE_SHM) */ |
| 549 | #endif /* ! defined (CANNOT_DUMP) */ | 554 | #endif /* ! defined (CANNOT_DUMP) */ |
| 550 | 555 | ||
| 551 | ${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp} OBJECTS_SYSTEM OBJECTS_MACHINE | 556 | ${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp} SOME_MACHINE_OBJECTS |
| 552 | rm -f ${etc}DOC | 557 | rm -f ${etc}DOC |
| 553 | ${libsrc}make-docfile -d ${srcdir} ${obj} OBJECTS_SYSTEM OBJECTS_MACHINE ${lisp} \ | 558 | ${libsrc}make-docfile -d ${srcdir} ${obj} SOME_MACHINE_OBJECTS |
| 554 | ${lispdir}version.el > ${etc}DOC | 559 | ${lispdir}version.el > ${etc}DOC |
| 555 | 560 | ||
| 556 | ${libsrc}make-docfile: | 561 | ${libsrc}make-docfile: |