From 229c1c6a140a8b8bc6de9b0a6abf97f39dadb591 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 1 Jan 1994 11:55:19 +0000 Subject: [PATCH] (SOME_MACHINE_OBJECTS): New var. (${etc}DOC): Use SOME_MACHINE_OBJECTS, not OBJECTS_MACHINE or OBJECTS_SYSTEM. --- src/Makefile.in | 9 +++++++-- 1 file 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 \ process.o callproc.o \ doprnt.o GETLOADAVG_OBJ +/* Object files used on some machine or other. + These go in the DOC file on all machines + in case they are needed there. */ +SOME_MACHINE_OBJECTS = sunfns.o + #ifdef TERMINFO /* Used to be -ltermcap here. If your machine needs that, define LIBS_TERMCAP in the m/*.h file. */ @@ -548,9 +553,9 @@ emacs: temacs ${etc}DOC ${lisp} #endif /* ! defined (HAVE_SHM) */ #endif /* ! defined (CANNOT_DUMP) */ -${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp} OBJECTS_SYSTEM OBJECTS_MACHINE +${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp} SOME_MACHINE_OBJECTS rm -f ${etc}DOC - ${libsrc}make-docfile -d ${srcdir} ${obj} OBJECTS_SYSTEM OBJECTS_MACHINE ${lisp} \ + ${libsrc}make-docfile -d ${srcdir} ${obj} SOME_MACHINE_OBJECTS ${lispdir}version.el > ${etc}DOC ${libsrc}make-docfile: -- 2.39.5