diff options
author | Mike Frysinger <vapier@gentoo.org> | 2023-01-01 13:38:44 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2023-01-10 01:15:27 -0500 |
commit | a8e175e5783a734756c1cc2939d1da2d49d6c8db (patch) | |
tree | ae8cf3209e179ffc60fb44e9145b2556533bc1cd /sim/bfin | |
parent | 75015a129feec801a5bc275742a8490f05ef6f87 (diff) | |
download | gdb-a8e175e5783a734756c1cc2939d1da2d49d6c8db.zip gdb-a8e175e5783a734756c1cc2939d1da2d49d6c8db.tar.gz gdb-a8e175e5783a734756c1cc2939d1da2d49d6c8db.tar.bz2 |
sim: bfin: 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/bfin')
-rw-r--r-- | sim/bfin/Makefile.in | 2 | ||||
-rw-r--r-- | sim/bfin/local.mk | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/sim/bfin/Makefile.in b/sim/bfin/Makefile.in index 569c64b..472bb48 100644 --- a/sim/bfin/Makefile.in +++ b/sim/bfin/Makefile.in @@ -19,6 +19,4 @@ arch = bfin -SIM_EXTRA_CFLAGS = $(SDL_CFLAGS) - ## COMMON_POST_CONFIG_FRAG diff --git a/sim/bfin/local.mk b/sim/bfin/local.mk index 95bc730..d3c5b17 100644 --- a/sim/bfin/local.mk +++ b/sim/bfin/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% = $(SDL_CFLAGS) + %C%_libsim_a_SOURCES = %C%_libsim_a_LIBADD = \ $(common_libcommon_a_OBJECTS) \ @@ -33,9 +35,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) |