aboutsummaryrefslogtreecommitdiff
path: root/mt/mt-matmul/bmark.mk
diff options
context:
space:
mode:
Diffstat (limited to 'mt/mt-matmul/bmark.mk')
-rw-r--r--mt/mt-matmul/bmark.mk29
1 files changed, 0 insertions, 29 deletions
diff --git a/mt/mt-matmul/bmark.mk b/mt/mt-matmul/bmark.mk
deleted file mode 100644
index 67d6af3..0000000
--- a/mt/mt-matmul/bmark.mk
+++ /dev/null
@@ -1,29 +0,0 @@
-#=======================================================================
-# UCB CS250 Makefile fragment for benchmarks
-#-----------------------------------------------------------------------
-#
-# Each benchmark directory should have its own fragment which
-# essentially lists what the source files are and how to link them
-# into an riscv and/or host executable. All variables should include
-# the benchmark name as a prefix so that they are unique.
-#
-
-mt_matmul_c_src = \
- mt-matmul.c \
-
-mt_matmul_riscv_src = \
- crt-mt.S \
-
-mt_matmul_c_objs = $(patsubst %.c, %.o, $(mt_matmul_c_src))
-mt_matmul_riscv_objs = $(patsubst %.S, %.o, $(mt_matmul_riscv_src))
-
-mt_matmul_host_bin = mt-matmul.host
-$(mt_matmul_host_bin) : $(mt_matmul_c_src)
- $(HOST_COMP) $^ -o $(mt_matmul_host_bin)
-
-mt_matmul_riscv_bin = mt-matmul.riscv
-$(mt_matmul_riscv_bin) : $(mt_matmul_c_objs) $(mt_matmul_riscv_objs)
- $(RISCV_LINK_MT) $(RISCV_LINK_SYSCALL) $(mt_matmul_c_objs) $(mt_matmul_riscv_objs) -o $(mt_matmul_riscv_bin)
-
-junk += $(mt_matmul_c_objs) $(mt_matmul_riscv_objs) \
- $(mt_matmul_host_bin) $(mt_matmul_riscv_bin)