# HG changeset patch # User Jim Blandy # Date 781654276 0 # Node ID 87337d65aa177cdb7c1388935fc2933bba1ab2c0 # Parent 32ae92d81323cb42796b531920af7e321d767922 * Makefile.in.in (obj) Add region-cache.o to the list of files. (region-cache.o): New target. (buffer.o, indent.o, search.o): Depend on region-cache.h. diff -r 32ae92d81323 -r 87337d65aa17 src/Makefile.in --- a/src/Makefile.in Sat Oct 08 22:09:57 1994 +0000 +++ b/src/Makefile.in Sat Oct 08 22:11:16 1994 +0000 @@ -467,6 +467,7 @@ eval.o floatfns.o fns.o print.o lread.o \ abbrev.o syntax.o UNEXEC mocklisp.o bytecode.o \ process.o callproc.o \ + region-cache.o \ doprnt.o strftime.o MKTIME_OBJ GETLOADAVG_OBJ /* Object files used on some machine or other. @@ -789,7 +790,7 @@ and so rarely changed in ways that do require any. */ abbrev.o: abbrev.c buffer.h commands.h $(config_h) -buffer.o: buffer.c buffer.h commands.h window.h \ +buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \ INTERVAL_SRC blockinput.h $(config_h) callint.o: callint.c window.h commands.h buffer.h mocklisp.h \ keyboard.h $(config_h) @@ -814,7 +815,7 @@ filemode.o: filemode.c $(config_h) getloadavg.o: getloadavg.c $(config_h) indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \ - termopts.h disptab.h + termopts.h disptab.h region-cache.h insdel.o: insdel.c window.h buffer.h INTERVAL_SRC blockinput.h $(config_h) keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h \ commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \ @@ -835,10 +836,12 @@ process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \ commands.h syssignal.h systime.h systty.h syswait.h frame.h $(config_h) regex.o: regex.c syntax.h buffer.h $(config_h) regex.h +region-cache.o: region-cache.c buffer.h region-cache.h frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \ buffer.h $(config_h) scroll.o: scroll.c termchar.h dispextern.h frame.h $(config_h) -search.o: search.c regex.h commands.h buffer.h syntax.h blockinput.h $(config_h) +search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \ + blockinput.h $(config_h) strftime.o: strftime.c $(config_h) syntax.o: syntax.c syntax.h buffer.h commands.h $(config_h) sysdep.o: sysdep.c $(config_h) dispextern.h termhooks.h termchar.h termopts.h \