aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1994-10-08 22:11:16 +0000
committerJim Blandy1994-10-08 22:11:16 +0000
commite8951513b692d13128feb8df0dab4683fcbea7a1 (patch)
treec7956beffc942b4c605679b40046d85a42f4d850 /src
parent788583a16b73f27743113c8f15bad4db4ea9b79e (diff)
downloademacs-e8951513b692d13128feb8df0dab4683fcbea7a1.tar.gz
emacs-e8951513b692d13128feb8df0dab4683fcbea7a1.zip
* 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.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 7e75d081445..4e15c462efd 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -467,6 +467,7 @@ obj= dispnew.o frame.o scroll.o xdisp.o window.o \
467 eval.o floatfns.o fns.o print.o lread.o \ 467 eval.o floatfns.o fns.o print.o lread.o \
468 abbrev.o syntax.o UNEXEC mocklisp.o bytecode.o \ 468 abbrev.o syntax.o UNEXEC mocklisp.o bytecode.o \
469 process.o callproc.o \ 469 process.o callproc.o \
470 region-cache.o \
470 doprnt.o strftime.o MKTIME_OBJ GETLOADAVG_OBJ 471 doprnt.o strftime.o MKTIME_OBJ GETLOADAVG_OBJ
471 472
472/* Object files used on some machine or other. 473/* Object files used on some machine or other.
@@ -789,7 +790,7 @@ alloca.o : alloca.s $(config_h)
789 and so rarely changed in ways that do require any. */ 790 and so rarely changed in ways that do require any. */
790 791
791abbrev.o: abbrev.c buffer.h commands.h $(config_h) 792abbrev.o: abbrev.c buffer.h commands.h $(config_h)
792buffer.o: buffer.c buffer.h commands.h window.h \ 793buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \
793 INTERVAL_SRC blockinput.h $(config_h) 794 INTERVAL_SRC blockinput.h $(config_h)
794callint.o: callint.c window.h commands.h buffer.h mocklisp.h \ 795callint.o: callint.c window.h commands.h buffer.h mocklisp.h \
795 keyboard.h $(config_h) 796 keyboard.h $(config_h)
@@ -814,7 +815,7 @@ filelock.o: filelock.c buffer.h paths.h $(config_h)
814filemode.o: filemode.c $(config_h) 815filemode.o: filemode.c $(config_h)
815getloadavg.o: getloadavg.c $(config_h) 816getloadavg.o: getloadavg.c $(config_h)
816indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \ 817indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \
817 termopts.h disptab.h 818 termopts.h disptab.h region-cache.h
818insdel.o: insdel.c window.h buffer.h INTERVAL_SRC blockinput.h $(config_h) 819insdel.o: insdel.c window.h buffer.h INTERVAL_SRC blockinput.h $(config_h)
819keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h \ 820keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h \
820 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \ 821 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \
@@ -835,10 +836,12 @@ mocklisp.o: mocklisp.c buffer.h $(config_h)
835process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \ 836process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \
836 commands.h syssignal.h systime.h systty.h syswait.h frame.h $(config_h) 837 commands.h syssignal.h systime.h systty.h syswait.h frame.h $(config_h)
837regex.o: regex.c syntax.h buffer.h $(config_h) regex.h 838regex.o: regex.c syntax.h buffer.h $(config_h) regex.h
839region-cache.o: region-cache.c buffer.h region-cache.h
838frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \ 840frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \
839 buffer.h $(config_h) 841 buffer.h $(config_h)
840scroll.o: scroll.c termchar.h dispextern.h frame.h $(config_h) 842scroll.o: scroll.c termchar.h dispextern.h frame.h $(config_h)
841search.o: search.c regex.h commands.h buffer.h syntax.h blockinput.h $(config_h) 843search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \
844 blockinput.h $(config_h)
842strftime.o: strftime.c $(config_h) 845strftime.o: strftime.c $(config_h)
843syntax.o: syntax.c syntax.h buffer.h commands.h $(config_h) 846syntax.o: syntax.c syntax.h buffer.h commands.h $(config_h)
844sysdep.o: sysdep.c $(config_h) dispextern.h termhooks.h termchar.h termopts.h \ 847sysdep.o: sysdep.c $(config_h) dispextern.h termhooks.h termchar.h termopts.h \