summaryrefslogtreecommitdiff
path: root/sim/bpf
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2023-01-01 13:37:18 -0500
committerMike Frysinger <vapier@gentoo.org>2023-01-10 01:15:27 -0500
commit75015a129feec801a5bc275742a8490f05ef6f87 (patch)
treed43cc453c363749de40b8b48f9576dfb113e27f8 /sim/bpf
parent98331de7867648439b10281c60057d8046412d3d (diff)
downloadbinutils-gdb-75015a129feec801a5bc275742a8490f05ef6f87.tar.gz
sim: bpf: move arch-specific file compilation to top-level
We can drop the arch-specific rules from the subdir as they're no longer used.
Diffstat (limited to 'sim/bpf')
-rw-r--r--sim/bpf/Makefile.in23
-rw-r--r--sim/bpf/local.mk11
2 files changed, 8 insertions, 26 deletions
diff --git a/sim/bpf/Makefile.in b/sim/bpf/Makefile.in
index 64ec667c12c..2376b859dd8 100644
--- a/sim/bpf/Makefile.in
+++ b/sim/bpf/Makefile.in
@@ -22,27 +22,4 @@ SIM_EXTRA_CFLAGS = -DWITH_TARGET_WORD_BITSIZE=64
## COMMON_POST_CONFIG_FRAG
-# Dependencies for binaries from CGEN generated source
-
-mloop-le.o: mloop-le.c
- $(COMPILE) -DWANT_ISA_EBPFLE mloop-le.c
- $(POSTCOMPILE)
-mloop-be.o: mloop-be.c
- $(COMPILE) -DWANT_ISA_EBPFBE mloop-be.c
- $(POSTCOMPILE)
-
-decode-le.o: decode-le.c
- $(COMPILE) -DWANT_ISA_EBPFLE $(srcdir)/decode-le.c
- $(POSTCOMPILE)
-decode-be.o: decode-be.c
- $(COMPILE) -DWANT_ISA_EBPFBE $(srcdir)/decode-be.c
- $(POSTCOMPILE)
-
-sem-le.o: sem-le.c
- $(COMPILE) -DWANT_ISA_EBPFLE $(srcdir)/sem-le.c
- $(POSTCOMPILE)
-sem-be.o: sem-be.c
- $(COMPILE) -DWANT_ISA_EBPFBE $(srcdir)/sem-be.c
- $(POSTCOMPILE)
-
arch = bpf
diff --git a/sim/bpf/local.mk b/sim/bpf/local.mk
index 19dcc25736c..580f744520c 100644
--- a/sim/bpf/local.mk
+++ b/sim/bpf/local.mk
@@ -15,6 +15,14 @@
## 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% = -DWITH_TARGET_WORD_BITSIZE=64
+AM_CPPFLAGS_%C%_mloop_le.o = -DWANT_ISA_EBPFLE
+AM_CPPFLAGS_%C%_mloop_be.o = -DWANT_ISA_EBPFBE
+AM_CPPFLAGS_%C%_decode_le.o = -DWANT_ISA_EBPFLE
+AM_CPPFLAGS_%C%_decode_be.o = -DWANT_ISA_EBPFBE
+AM_CPPFLAGS_%C%_sem_le.o = -DWANT_ISA_EBPFLE
+AM_CPPFLAGS_%C%_sem_be.o = -DWANT_ISA_EBPFBE
+
%C%_libsim_a_SOURCES =
%C%_libsim_a_LIBADD = \
$(common_libcommon_a_OBJECTS) \
@@ -44,9 +52,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)