diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-22 22:36:12 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-23 04:40:07 -0400 |
commit | 49cd1634b2a59879329c5a285192ac581e64904c (patch) | |
tree | 4921bf4264168301549340c6cf966cfa5301a99a /sim/m68hc11/configure.ac | |
parent | 3649cb065699316bc8cd64b06f273c72f1806323 (diff) | |
download | gdb-49cd1634b2a59879329c5a285192ac581e64904c.zip gdb-49cd1634b2a59879329c5a285192ac581e64904c.tar.gz gdb-49cd1634b2a59879329c5a285192ac581e64904c.tar.bz2 |
sim: dv-sockser: move build to common dir
If dv-sockser is available, lets add it to the common SIM_HW_OBJS
variable so it is always included automatically. Now ports do not
have to shoe horn it in directly themselves. It does mean it will
be compiled for targets that don't explicitly use it, but that's
really what we want anyways.
Diffstat (limited to 'sim/m68hc11/configure.ac')
-rw-r--r-- | sim/m68hc11/configure.ac | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sim/m68hc11/configure.ac b/sim/m68hc11/configure.ac index d25a8db3..5aefda5 100644 --- a/sim/m68hc11/configure.ac +++ b/sim/m68hc11/configure.ac @@ -21,13 +21,7 @@ case "${target}" in hw_extra_devices="m68hc11 m68hc11sio m68hc11eepr m68hc11tim m68hc11spi nvram" SIM_SUBTARGET="$SIM_SUBTARGET -DTARGET_M68HC11=1" ;; - *) - m68hc11_extra_objs="" - ;; esac SIM_AC_OPTION_HARDWARE($hw_enabled,$hw_devices,$hw_extra_devices) -m68hc11_extra_objs="$SIM_DV_SOCKSER_O" -AC_SUBST(m68hc11_extra_objs) - SIM_AC_OUTPUT |