diff options
author | Mike Frysinger <vapier@gentoo.org> | 2023-01-01 14:14:05 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2023-01-10 01:15:28 -0500 |
commit | 9b5a17d2be51a9d84df4934bf1262441cd1a2ca1 (patch) | |
tree | 5bd4e105d7b2b5d5f48ad076affa1d71e9caebf6 /sim/m32r | |
parent | cd7aa21771c75387148d52e6bbc6adfd911db10e (diff) | |
download | binutils-9b5a17d2be51a9d84df4934bf1262441cd1a2ca1.zip binutils-9b5a17d2be51a9d84df4934bf1262441cd1a2ca1.tar.gz binutils-9b5a17d2be51a9d84df4934bf1262441cd1a2ca1.tar.bz2 |
sim: m32r: move arch-specific file compilation to top-level
Diffstat (limited to 'sim/m32r')
-rw-r--r-- | sim/m32r/Makefile.in | 3 | ||||
-rw-r--r-- | sim/m32r/local.mk | 17 |
2 files changed, 14 insertions, 6 deletions
diff --git a/sim/m32r/Makefile.in b/sim/m32r/Makefile.in index bc7b856..43346b8 100644 --- a/sim/m32r/Makefile.in +++ b/sim/m32r/Makefile.in @@ -21,7 +21,4 @@ arch = m32r -# Some modules don't build cleanly yet. -cpu.o cpu2.o cpux.o m32r.o m32r2.o m32rx.o mloop.o mloop2.o mloopx.o sem.o sim-if.o traps.o: SIM_WERROR_CFLAGS = - ## COMMON_POST_CONFIG_FRAG diff --git a/sim/m32r/local.mk b/sim/m32r/local.mk index afecaf6..3ccfce7 100644 --- a/sim/m32r/local.mk +++ b/sim/m32r/local.mk @@ -16,6 +16,20 @@ ## You should have received a copy of the GNU General Public License ## along with this program. If not, see <http://www.gnu.org/licenses/>. +## Some modules don't build cleanly yet. +AM_CFLAGS_%C%_cpu.o = -Wno-error +AM_CFLAGS_%C%_cpu2.o = -Wno-error +AM_CFLAGS_%C%_cpux.o = -Wno-error +AM_CFLAGS_%C%_m32r.o = -Wno-error +AM_CFLAGS_%C%_m32r2.o = -Wno-error +AM_CFLAGS_%C%_m32rx.o = -Wno-error +AM_CFLAGS_%C%_mloop.o = -Wno-error +AM_CFLAGS_%C%_mloop2.o = -Wno-error +AM_CFLAGS_%C%_mloopx.o = -Wno-error +AM_CFLAGS_%C%_sem.o = -Wno-error +AM_CFLAGS_%C%_sim_if.o = -Wno-error +AM_CFLAGS_%C%_traps.o = -Wno-error + %C%_libsim_a_SOURCES = %C%_libsim_a_LIBADD = \ $(common_libcommon_a_OBJECTS) \ @@ -56,9 +70,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) |