diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2004-06-26 18:45:53 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2004-06-26 18:45:53 +0000 |
commit | 599e0b9e0dab8c7bcfd02a5911d16b7bc4014521 (patch) | |
tree | 0cd81c3a0097d866fd39e88e63c58b4d1e495dee /sim/mn10300/Makefile.in | |
parent | 35819f5e08d7c31ea3588171554900b4b0b5ed0e (diff) | |
download | gdb-599e0b9e0dab8c7bcfd02a5911d16b7bc4014521.zip gdb-599e0b9e0dab8c7bcfd02a5911d16b7bc4014521.tar.gz gdb-599e0b9e0dab8c7bcfd02a5911d16b7bc4014521.tar.bz2 |
* configure.in: Use common simulator always. Don't subst sim_gen
nor mn10300_common.
* configure: Rebuilt.
* Makefile.in (WITHOUT_COMMON_OBJS, WITHOUT_COMMON_INTERP_DEP,
WITHOUT_COMMON_RUN_OBJS): Remove.
(WITH_COMMON_OBJS): Rename to MN10300_OBJS.
(WITH_COMMON_INTERP_DEP): Rename to MN10300_INTERP_DEP.
(WITH_COMMON_RUN_OBJS): Rename to SIM_RUN_OBJS.
(SIM_EXTRA_CFLAGS): Don't use @sim_gen@.
* interp.c: Remove non-common bits.
* mn10300_sim.h: Likewise.
Diffstat (limited to 'sim/mn10300/Makefile.in')
-rw-r--r-- | sim/mn10300/Makefile.in | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/sim/mn10300/Makefile.in b/sim/mn10300/Makefile.in index fc05552..7f12681 100644 --- a/sim/mn10300/Makefile.in +++ b/sim/mn10300/Makefile.in @@ -1,5 +1,5 @@ # Makefile template for Configure for the mn10300 sim library. -# Copyright (C) 1996, 1997, 2000, 2001 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 2000, 2001, 2004 Free Software Foundation, Inc. # Written by Cygnus Support. # # This program is free software; you can redistribute it and/or modify @@ -18,9 +18,7 @@ ## COMMON_PRE_CONFIG_FRAG -WITHOUT_COMMON_OBJS = table.o simops.o sim-load.o -WITHOUT_COMMON_INTERP_DEP = table.c -WITH_COMMON_OBJS = \ +MN10300_OBJS = \ itable.o semantics.o idecode.o icache.o engine.o irun.o support.o \ $(SIM_NEW_COMMON_OBJS) \ op_utils.o \ @@ -31,17 +29,12 @@ WITH_COMMON_OBJS = \ sim-reason.o \ sim-stop.o \ dv-sockser.o -WITH_COMMON_INTERP_DEP = - -MN10300_OBJS = $(@mn10300_common@_COMMON_OBJS) -MN10300_INTERP_DEP = $(@mn10300_common@_COMMON_INTERP_DEP) +MN10300_INTERP_DEP = SIM_OBJS = $(MN10300_OBJS) interp.o # List of main object files for `run'. -WITHOUT_COMMON_RUN_OBJS = run.o -WITH_COMMON_RUN_OBJS = nrun.o -SIM_RUN_OBJS = $(@mn10300_common@_COMMON_RUN_OBJS) +SIM_RUN_OBJS = nrun.o SIM_EXTRA_CLEAN = clean-extra # Extra dependencies for "sim-main.h" @@ -53,7 +46,7 @@ NL_TARGET = -DNL_TARGET_mn10300 INCLUDE = mn10300_sim.h $(srcdir)/../../include/gdb/callback.h # List of extra flags to always pass to $(CC). -SIM_EXTRA_CFLAGS = @sim_gen@ -DPOLL_QUIT_INTERVAL=0x20 +SIM_EXTRA_CFLAGS = -DPOLL_QUIT_INTERVAL=0x20 ## COMMON_POST_CONFIG_FRAG |