diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-22 23:59:45 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-24 01:08:56 -0400 |
commit | cc8ab1ded5dbc6c2ddb1b8c62f0e0f8f486a5f17 (patch) | |
tree | 52cc1d85601a51a1e4ef3376e25e9bd4425d1afe /sim/moxie/Makefile.in | |
parent | 523ba8f92e3ff4c49f65b582c89b4563b1b665ad (diff) | |
download | gdb-cc8ab1ded5dbc6c2ddb1b8c62f0e0f8f486a5f17.zip gdb-cc8ab1ded5dbc6c2ddb1b8c62f0e0f8f486a5f17.tar.gz gdb-cc8ab1ded5dbc6c2ddb1b8c62f0e0f8f486a5f17.tar.bz2 |
sim: moxie: convert to nrun.o
This port already used a lot of common/ files, so cutting it over to
nrun.o and using a few more common objects is pretty straight forward.
Diffstat (limited to 'sim/moxie/Makefile.in')
-rw-r--r-- | sim/moxie/Makefile.in | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/sim/moxie/Makefile.in b/sim/moxie/Makefile.in index 76137c8..1af4bd9 100644 --- a/sim/moxie/Makefile.in +++ b/sim/moxie/Makefile.in @@ -1,7 +1,7 @@ # Makefile template for Configure for the moxie sim library. # Copyright (C) 2008-2015 Free Software Foundation, Inc. # Written by Anthony Green -# +# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or @@ -19,14 +19,15 @@ dtbdir = @datadir@/gdb/dtb -# Use the deprecated run frontend until we migrate to nrun.o -SIM_RUN_OBJS = run.o -SIM_EXTRA_CFLAGS = -DSIM_USE_DEPRECATED_RUN_FRONTEND - -SIM_OBJS = interp.o sim-load.o sim-io.o sim-config.o sim-utils.o \ -sim-options.o sim-module.o sim-core.o sim-endian.o sim-trace.o \ -sim-engine.o sim-fpu.o sim-bits.o sim-profile.o sim-events.o \ -sim-memopt.o sim-command.o +SIM_OBJS = \ + $(SIM_NEW_COMMON_OBJS) \ + interp.o \ + sim-cpu.o \ + sim-engine.o \ + sim-hload.o \ + sim-hrw.o \ + sim-reason.o \ + sim-stop.o SIM_EXTRA_LIBS = -lm -lz SIM_EXTRA_INSTALL = install-dtb |