aboutsummaryrefslogtreecommitdiff
path: root/sim/ppc/Makefile.in
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>1995-11-05 05:40:15 +0000
committerFred Fish <fnf@specifix.com>1995-11-05 05:40:15 +0000
commit01860b7ed14f1407e459a40a856abd7c82de012a (patch)
tree036884fff2d07096d0844985ed8bc661ac47357f /sim/ppc/Makefile.in
parenta3d1c56107d456fdf4b0838b6d9ed46fddc42386 (diff)
downloadgdb-01860b7ed14f1407e459a40a856abd7c82de012a.zip
gdb-01860b7ed14f1407e459a40a856abd7c82de012a.tar.gz
gdb-01860b7ed14f1407e459a40a856abd7c82de012a.tar.bz2
* core.c: Rename to corefile.c
* core.h: Rename to corefile.h * inline.c: Include corefile.h, renamed from core.h. * cpu.h: Include corefile.h, renamed from core.h * vm.c: Include corefile.h, renamed from core.h * Makefile.in (CPU_H): Change core.h to corefile.h (vm.o): Change dependency to corefile.h (LIB_SRC): Change core.c to corefile.c. (LIB_OBJ): Change core.o to corefile.o. (corefile.o): Change dependencies to corefile.c, corefile.h. * corefile.c: Include corefile.h rather than core.h * README.psim (KNOWN PROBLEMS): Change core.* references to corefile.* references.
Diffstat (limited to 'sim/ppc/Makefile.in')
-rw-r--r--sim/ppc/Makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in
index b56e6e5..f893cee 100644
--- a/sim/ppc/Makefile.in
+++ b/sim/ppc/Makefile.in
@@ -156,7 +156,7 @@ CPU_H = \
$(BASICS_H) \
$(REGISTERS_H) \
device_tree.h \
- core.h \
+ corefile.h \
vm.h \
events.h \
interrupts.h \
@@ -191,7 +191,7 @@ LIB_SRC = \
debug.c \
ppc-endian.c \
vm.c \
- core.c \
+ corefile.c \
events.c \
os_emul.c \
emul_generic.c \
@@ -220,7 +220,7 @@ LIB_OBJ = \
emul_netbsd.o \
registers.o \
vm.o \
- core.o \
+ corefile.o \
spreg.o \
cpu.o \
interrupts.o \
@@ -276,9 +276,9 @@ idecode.o: idecode.c $(CPU_H) $(IDECODE_H) semantics.h
# double.o: double.c dp-bit.c
vm.o: vm.c vm.h vm_n.h $(BASICS_H) $(REGISTERS_H) \
- device_tree.h core.h interrupts.h itable.h mon.h
+ device_tree.h corefile.h interrupts.h itable.h mon.h
-core.o: core.c core.h $(BASICS_H) device_tree.h
+corefile.o: corefile.c corefile.h $(BASICS_H) device_tree.h
events.o: events.c events.h $(BASICS_H)