diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-28 05:34:55 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-28 05:35:29 -0400 |
commit | 9943d3185abb9aa3e7269ece80d00e9020187ec6 (patch) | |
tree | 7cf9b677ea054ed558281fadfdf2c5c71401199d /sim/avr/Makefile.in | |
parent | eca5fe422e2650fcb6a551af11bcf8de181f97e9 (diff) | |
download | gdb-9943d3185abb9aa3e7269ece80d00e9020187ec6.zip gdb-9943d3185abb9aa3e7269ece80d00e9020187ec6.tar.gz gdb-9943d3185abb9aa3e7269ece80d00e9020187ec6.tar.bz2 |
sim: avr: convert to nrun.o
Looks like a lot more work than actually was -- the main decode loop
was de-indented by dropping the loop as a step-once function.
Diffstat (limited to 'sim/avr/Makefile.in')
-rw-r--r-- | sim/avr/Makefile.in | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/sim/avr/Makefile.in b/sim/avr/Makefile.in index b852211..880b118 100644 --- a/sim/avr/Makefile.in +++ b/sim/avr/Makefile.in @@ -1,6 +1,6 @@ # Makefile template for Configure for the AVR sim library. # Copyright (C) 2009-2015 Free Software Foundation, Inc. -# +# # 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 @@ -16,14 +16,15 @@ ## COMMON_PRE_CONFIG_FRAG -SIM_EXTRA_CFLAGS = -DSIM_USE_DEPRECATED_RUN_FRONTEND - -# Use the deprecated run frontend until we migrate to nrun.o -SIM_RUN_OBJS = run.o - -SIM_OBJS = interp.o sim-load.o -SIM_EXTRA_LIBS = -lm +SIM_OBJS = \ + $(SIM_NEW_COMMON_OBJS) \ + interp.o \ + sim-cpu.o \ + sim-engine.o \ + sim-hload.o \ + sim-hrw.o \ + sim-reason.o \ + sim-resume.o \ + sim-stop.o ## COMMON_POST_CONFIG_FRAG - -interp.o: interp.c |