diff options
author | Mike Frysinger <vapier@gentoo.org> | 2023-01-02 16:46:14 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2023-01-14 20:53:13 -0500 |
commit | 72be276fffe304a478ecadad34bb89fe33cdf052 (patch) | |
tree | 6b4ac42aa49a60a8a5502fc33829ba3741f32ef9 /sim/arm | |
parent | 4df74707043bf248f248cd52d9c70c29ec4e679c (diff) | |
download | gdb-72be276fffe304a478ecadad34bb89fe33cdf052.zip gdb-72be276fffe304a478ecadad34bb89fe33cdf052.tar.gz gdb-72be276fffe304a478ecadad34bb89fe33cdf052.tar.bz2 |
sim: common: move modules.c to source tracking
This makes sure the arch-specific modules.c wildcard is matched and
not the common/%.c so that we compile it correctly. It also makes
sure each subdir has depdir logic enabled.
Diffstat (limited to 'sim/arm')
-rw-r--r-- | sim/arm/local.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sim/arm/local.mk b/sim/arm/local.mk index 2e20f85..0c2b1a3 100644 --- a/sim/arm/local.mk +++ b/sim/arm/local.mk @@ -18,6 +18,8 @@ AM_CPPFLAGS_%C% = -DMODET +nodist_%C%_libsim_a_SOURCES = \ + %D%/modules.c %C%_libsim_a_SOURCES = \ $(common_libcommon_a_SOURCES) %C%_libsim_a_LIBADD = \ @@ -27,8 +29,7 @@ AM_CPPFLAGS_%C% = -DMODET %D%/armemu.o \ %D%/armemu32.o %D%/arminit.o %D%/armos.o %D%/armsupp.o \ %D%/armvirt.o %D%/thumbemu.o \ - %D%/armcopro.o %D%/maverick.o %D%/iwmmxt.o \ - %D%/modules.o + %D%/armcopro.o %D%/maverick.o %D%/iwmmxt.o $(%C%_libsim_a_OBJECTS) $(%C%_libsim_a_LIBADD): %D%/hw-config.h noinst_LIBRARIES += %D%/libsim.a |