aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/mt-vvadd
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2017-03-21 18:12:45 -0700
committerAndrew Waterman <andrew@sifive.com>2017-03-21 18:12:45 -0700
commita83e3b9243e57a50de283fc07d5b6c81c0443b3d (patch)
treef17c97e08b7e84f55dd02fc8620b382ecec684d9 /benchmarks/mt-vvadd
parent9fbc573597c8087ab0aa8e20d8835cfc2c5097a4 (diff)
downloadriscv-tests-a83e3b9243e57a50de283fc07d5b6c81c0443b3d.zip
riscv-tests-a83e3b9243e57a50de283fc07d5b6c81c0443b3d.tar.gz
riscv-tests-a83e3b9243e57a50de283fc07d5b6c81c0443b3d.tar.bz2
Clean up bmarks build
Diffstat (limited to 'benchmarks/mt-vvadd')
-rw-r--r--benchmarks/mt-vvadd/bmark.mk31
1 files changed, 0 insertions, 31 deletions
diff --git a/benchmarks/mt-vvadd/bmark.mk b/benchmarks/mt-vvadd/bmark.mk
deleted file mode 100644
index ff969c1..0000000
--- a/benchmarks/mt-vvadd/bmark.mk
+++ /dev/null
@@ -1,31 +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_vvadd_c_src = \
- mt-vvadd.c \
- vvadd.c \
- syscalls.c \
-
-mt_vvadd_riscv_src = \
- crt.S \
-
-mt_vvadd_c_objs = $(patsubst %.c, %.o, $(mt_vvadd_c_src))
-mt_vvadd_riscv_objs = $(patsubst %.S, %.o, $(mt_vvadd_riscv_src))
-
-mt_vvadd_host_bin = mt-vvadd.host
-$(mt_vvadd_host_bin) : $(mt_vvadd_c_src)
- $(HOST_COMP) $^ -o $(mt_vvadd_host_bin)
-
-mt_vvadd_riscv_bin = mt-vvadd.riscv
-$(mt_vvadd_riscv_bin) : $(mt_vvadd_c_objs) $(mt_vvadd_riscv_objs)
- $(RISCV_LINK) $(mt_vvadd_c_objs) $(mt_vvadd_riscv_objs) $(RISCV_LINK_OPTS) -o $(mt_vvadd_riscv_bin)
-
-junk += $(mt_vvadd_c_objs) $(mt_vvadd_riscv_objs) \
- $(mt_vvadd_host_bin) $(mt_vvadd_riscv_bin)