X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=benchmarks%2Fmultiply%2Fbmark.mk;fp=benchmarks%2Fmultiply%2Fbmark.mk;h=0000000000000000000000000000000000000000;hb=a83e3b9243e57a50de283fc07d5b6c81c0443b3d;hp=93ba67f1c44424c0b2d4e17dbe583d5e630afc39;hpb=9fbc573597c8087ab0aa8e20d8835cfc2c5097a4;p=riscv-tests.git diff --git a/benchmarks/multiply/bmark.mk b/benchmarks/multiply/bmark.mk deleted file mode 100644 index 93ba67f..0000000 --- a/benchmarks/multiply/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. -# - -multiply_c_src = \ - multiply_main.c \ - multiply.c \ - syscalls.c \ - -multiply_riscv_src = \ - crt.S \ - -multiply_c_objs = $(patsubst %.c, %.o, $(multiply_c_src)) -multiply_riscv_objs = $(patsubst %.S, %.o, $(multiply_riscv_src)) - -multiply_host_bin = multiply.host -$(multiply_host_bin): $(multiply_c_src) - $(HOST_COMP) $^ -o $(multiply_host_bin) - -multiply_riscv_bin = multiply.riscv -$(multiply_riscv_bin): $(multiply_c_objs) $(multiply_riscv_objs) - $(RISCV_LINK) $(multiply_c_objs) $(multiply_riscv_objs) -o $(multiply_riscv_bin) $(RISCV_LINK_OPTS) - -junk += $(multiply_c_objs) $(multiply_riscv_objs) \ - $(multiply_host_bin) $(multiply_riscv_bin)