diff options
author | Mike Frysinger <vapier@gentoo.org> | 2023-01-01 14:12:55 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2023-01-10 01:15:28 -0500 |
commit | cd7aa21771c75387148d52e6bbc6adfd911db10e (patch) | |
tree | 4d20dc528beb9f781f260e8adf6ace31ef7a2356 /sim/m32c | |
parent | 2d3b0c959d870f5b4c7c8fb39bf19039509ee627 (diff) | |
download | gdb-cd7aa21771c75387148d52e6bbc6adfd911db10e.zip gdb-cd7aa21771c75387148d52e6bbc6adfd911db10e.tar.gz gdb-cd7aa21771c75387148d52e6bbc6adfd911db10e.tar.bz2 |
sim: m32c: move arch-specific file compilation to top-level
The arch-specific flags are only used by the arch-specific modules,
not the common/ files, so we can delete them too.
Diffstat (limited to 'sim/m32c')
-rw-r--r-- | sim/m32c/Makefile.in | 3 | ||||
-rw-r--r-- | sim/m32c/local.mk | 5 |
2 files changed, 2 insertions, 6 deletions
diff --git a/sim/m32c/Makefile.in b/sim/m32c/Makefile.in index 4c91e57..02d2043 100644 --- a/sim/m32c/Makefile.in +++ b/sim/m32c/Makefile.in @@ -19,7 +19,4 @@ ### along with this program. If not, see <http://www.gnu.org/licenses/>. ## COMMON_PRE_CONFIG_FRAG - -SIM_EXTRA_CFLAGS = -DTIMER_A - ## COMMON_POST_CONFIG_FRAG diff --git a/sim/m32c/local.mk b/sim/m32c/local.mk index 5633240..e992b01 100644 --- a/sim/m32c/local.mk +++ b/sim/m32c/local.mk @@ -16,6 +16,8 @@ ## You should have received a copy of the GNU General Public License ## along with this program. If not, see <http://www.gnu.org/licenses/>. +AM_CPPFLAGS_%C% = -DTIMER_A + %C%_libsim_a_SOURCES = %C%_libsim_a_LIBADD = \ $(common_libcommon_a_OBJECTS) \ @@ -35,9 +37,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) |