diff options
author | Mike Frysinger <vapier@gentoo.org> | 2023-01-01 14:23:04 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2023-01-10 01:15:28 -0500 |
commit | 0db0b664a68aa34b3672ef7fd4ffa7a7dd89e76b (patch) | |
tree | 0f126c40fe68a005e1cbaa31892d91e0840c65d5 /sim | |
parent | e7699de50225b7f954939c4438a5f90f972b6eaa (diff) | |
download | fsf-binutils-gdb-0db0b664a68aa34b3672ef7fd4ffa7a7dd89e76b.zip fsf-binutils-gdb-0db0b664a68aa34b3672ef7fd4ffa7a7dd89e76b.tar.gz fsf-binutils-gdb-0db0b664a68aa34b3672ef7fd4ffa7a7dd89e76b.tar.bz2 |
sim: rl78: move arch-specific file compilation to top-level
Diffstat (limited to 'sim')
-rw-r--r-- | sim/Makefile.in | 3 | ||||
-rw-r--r-- | sim/rl78/local.mk | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/sim/Makefile.in b/sim/Makefile.in index 8fd4842..f19f245 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -5406,9 +5406,6 @@ testsuite/common/bits64m63.c: testsuite/common/bits-gen$(EXEEXT) testsuite/commo @SIM_ENABLE_ARCH_riscv_TRUE@ $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F) @SIM_ENABLE_ARCH_rl78_TRUE@$(rl78_libsim_a_OBJECTS) $(rl78_libsim_a_LIBADD): rl78/hw-config.h -@SIM_ENABLE_ARCH_rl78_TRUE@rl78/%.o: rl78/%.c -@SIM_ENABLE_ARCH_rl78_TRUE@ $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F) - @SIM_ENABLE_ARCH_rl78_TRUE@rl78/%.o: common/%.c @SIM_ENABLE_ARCH_rl78_TRUE@ $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F) @SIM_ENABLE_ARCH_rx_TRUE@$(rx_libsim_a_OBJECTS) $(rx_libsim_a_LIBADD): rx/hw-config.h diff --git a/sim/rl78/local.mk b/sim/rl78/local.mk index 935fbf1..13962a9 100644 --- a/sim/rl78/local.mk +++ b/sim/rl78/local.mk @@ -30,9 +30,6 @@ $(%C%_libsim_a_OBJECTS) $(%C%_libsim_a_LIBADD): %D%/hw-config.h noinst_LIBRARIES += %D%/libsim.a -%D%/%.o: %D%/%.c - $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F) - %D%/%.o: common/%.c $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F) |