diff options
author | Mike Frysinger <vapier@gentoo.org> | 2023-01-01 14:16:00 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2023-01-10 01:15:28 -0500 |
commit | 28ae9bed3df5f3a44b3f9951eeb7ea1a74bc6790 (patch) | |
tree | f47818781ec6293e3fd69a8760521c8a6ffebf75 /sim | |
parent | 5a71cd470ffe6e3f818ed1fba7ce8c3faaae7709 (diff) | |
download | gdb-28ae9bed3df5f3a44b3f9951eeb7ea1a74bc6790.zip gdb-28ae9bed3df5f3a44b3f9951eeb7ea1a74bc6790.tar.gz gdb-28ae9bed3df5f3a44b3f9951eeb7ea1a74bc6790.tar.bz2 |
sim: mcore: move arch-specific file compilation to top-level
Diffstat (limited to 'sim')
-rw-r--r-- | sim/Makefile.in | 3 | ||||
-rw-r--r-- | sim/mcore/local.mk | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/sim/Makefile.in b/sim/Makefile.in index 0b9dfeb..7330a93 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -5081,9 +5081,6 @@ testsuite/common/bits64m63.c: testsuite/common/bits-gen$(EXEEXT) testsuite/commo @SIM_ENABLE_ARCH_m68hc11_TRUE@ $(AM_V_GEN)$< -m6812 >$@ @SIM_ENABLE_ARCH_mcore_TRUE@$(mcore_libsim_a_OBJECTS) $(mcore_libsim_a_LIBADD): mcore/hw-config.h -@SIM_ENABLE_ARCH_mcore_TRUE@mcore/%.o: mcore/%.c -@SIM_ENABLE_ARCH_mcore_TRUE@ $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F) - @SIM_ENABLE_ARCH_mcore_TRUE@mcore/%.o: common/%.c @SIM_ENABLE_ARCH_mcore_TRUE@ $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F) @SIM_ENABLE_ARCH_microblaze_TRUE@$(microblaze_libsim_a_OBJECTS) $(microblaze_libsim_a_LIBADD): microblaze/hw-config.h diff --git a/sim/mcore/local.mk b/sim/mcore/local.mk index 94abebc..69cb043 100644 --- a/sim/mcore/local.mk +++ b/sim/mcore/local.mk @@ -28,9 +28,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) |