diff options
author | Andrey Volkov <avolkov@transas.com> | 2002-07-29 17:01:57 +0000 |
---|---|---|
committer | Andrey Volkov <avolkov@transas.com> | 2002-07-29 17:01:57 +0000 |
commit | a64bfde32f9360d1d220a20835dca8ecf69113b6 (patch) | |
tree | 6acc21adda1c922dd76775abe4b754ffeda8d9d5 /sim/h8300 | |
parent | 467e970634e0f881a58ea8d71e35ceceb2f7eb80 (diff) | |
download | ppe42-binutils-a64bfde32f9360d1d220a20835dca8ecf69113b6.tar.gz ppe42-binutils-a64bfde32f9360d1d220a20835dca8ecf69113b6.zip |
Add dependences to Makefile.in and include sim-h8300 in compile.c
Diffstat (limited to 'sim/h8300')
-rw-r--r-- | sim/h8300/ChangeLog | 6 | ||||
-rw-r--r-- | sim/h8300/Makefile.in | 6 | ||||
-rw-r--r-- | sim/h8300/compile.c | 1 |
3 files changed, 11 insertions, 2 deletions
diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog index e49d1cb755..657a69f4a9 100644 --- a/sim/h8300/ChangeLog +++ b/sim/h8300/ChangeLog @@ -1,3 +1,9 @@ +2002-07-29 Andrey Volkov <avolkov@transas.com> + + * compile.c: Include "gdb/sim-h8300.h" + * Makefile.in: Add dependences on "inst.h", + "gdb/callback.h", "gdb/remote-sim.h" and "gdb/sim-h8300.h". + 2002-06-16 Andrew Cagney <ac131313@redhat.com> * configure: Regenerated to track ../common/aclocal.m4 changes. diff --git a/sim/h8300/Makefile.in b/sim/h8300/Makefile.in index 867e2e6e1d..55dc3db731 100644 --- a/sim/h8300/Makefile.in +++ b/sim/h8300/Makefile.in @@ -19,7 +19,9 @@ ## COMMON_PRE_CONFIG_FRAG SIM_OBJS = compile.o sim-load.o - ## COMMON_POST_CONFIG_FRAG -compile.o: compile.c config.h +compile.o: compile.c inst.h config.h \ + $(srcdir)/../../include/gdb/sim-h8300.h \ + $(srcdir)/../../include/gdb/remote-sim.h \ + $(srcdir)/../../include/gdb/callback.h diff --git a/sim/h8300/compile.c b/sim/h8300/compile.c index b8c5ef3f56..8e4b55d6a2 100644 --- a/sim/h8300/compile.c +++ b/sim/h8300/compile.c @@ -34,6 +34,7 @@ #include "bfd.h" #include "gdb/callback.h" #include "gdb/remote-sim.h" +#include "gdb/sim-h8300.h" #ifndef SIGTRAP # define SIGTRAP 5 |