diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-09-12 02:44:03 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-09-12 02:44:03 +0000 |
commit | 93e7a1b5b74ce4e5a030378b5f39077aed9d0912 (patch) | |
tree | 7ba8a934d602cd9dae5417f8e943cfffe4ebe87e /sim/v850/Makefile.in | |
parent | 11ac69e0139253d10771787a44adfecb9e4bef70 (diff) | |
download | gdb-93e7a1b5b74ce4e5a030378b5f39077aed9d0912.zip gdb-93e7a1b5b74ce4e5a030378b5f39077aed9d0912.tar.gz gdb-93e7a1b5b74ce4e5a030378b5f39077aed9d0912.tar.bz2 |
Add profiling support to v850*.
Diffstat (limited to 'sim/v850/Makefile.in')
-rw-r--r-- | sim/v850/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sim/v850/Makefile.in b/sim/v850/Makefile.in index f0c5521..cadd913 100644 --- a/sim/v850/Makefile.in +++ b/sim/v850/Makefile.in @@ -45,7 +45,7 @@ SIM_RUN_OBJS = nrun.o # List of extra dependencies. # Generally this consists of simulator specific files included by sim-main.h. -SIM_EXTRA_DEPS = v850_sim.h sim-main.h simops.h +SIM_EXTRA_DEPS = v850_sim.h sim-main.h simops.h itable.h # List of flags to always pass to $(CC) SIM_WARNINGS=@sim_warnings@ @@ -59,18 +59,18 @@ SIM_EXTRA_CFLAGS = \ $(SIM_HOSTENDIAN) SIM_EXTRA_CLEAN = clean-extra -INCLUDE = simops.h v850_sim.h sim-main.h $(srcdir)/../../include/callback.h +INCLUDE = $(sim_main_headers) $(SIM_EXTRA_DEPS) ## COMMON_POST_CONFIG_FRAG simops.h table.c: tmp-gencode -tmp-gencode: gencode simops.h +tmp-gencode: gencode ./gencode >tmp-table.c mv tmp-table.c table.c ./gencode -h >tmp-simops.h mv tmp-simops.h simops.h touch tmp-gencode -gencode.o: gencode.c $(INCLUDE) +gencode.o: gencode.c $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gencode.c v850-opc.o: $(srcdir)/../../opcodes/v850-opc.c $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $< @@ -151,5 +151,5 @@ clean-extra: clean-igen rm -f table.c simops.h gencode #interp.o: interp.c table.c $(INCLUDE) -simops.o: simops.c simops.h +simops.o: simops.c $(INCLUDE) #table.o: table.c |