diff options
author | Andrew Waterman <andrew@sifive.com> | 2017-03-21 18:12:45 -0700 |
---|---|---|
committer | Andrew Waterman <andrew@sifive.com> | 2017-03-21 18:12:45 -0700 |
commit | a83e3b9243e57a50de283fc07d5b6c81c0443b3d (patch) | |
tree | f17c97e08b7e84f55dd02fc8620b382ecec684d9 /benchmarks/vvadd | |
parent | 9fbc573597c8087ab0aa8e20d8835cfc2c5097a4 (diff) | |
download | riscv-tests-a83e3b9243e57a50de283fc07d5b6c81c0443b3d.zip riscv-tests-a83e3b9243e57a50de283fc07d5b6c81c0443b3d.tar.gz riscv-tests-a83e3b9243e57a50de283fc07d5b6c81c0443b3d.tar.bz2 |
Clean up bmarks build
Diffstat (limited to 'benchmarks/vvadd')
-rw-r--r-- | benchmarks/vvadd/bmark.mk | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/benchmarks/vvadd/bmark.mk b/benchmarks/vvadd/bmark.mk deleted file mode 100644 index 5ab99de..0000000 --- a/benchmarks/vvadd/bmark.mk +++ /dev/null @@ -1,30 +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. -# - -vvadd_c_src = \ - vvadd_main.c \ - syscalls.c \ - -vvadd_riscv_src = \ - crt.S \ - -vvadd_c_objs = $(patsubst %.c, %.o, $(vvadd_c_src)) -vvadd_riscv_objs = $(patsubst %.S, %.o, $(vvadd_riscv_src)) - -vvadd_host_bin = vvadd.host -$(vvadd_host_bin) : $(vvadd_c_src) - $(HOST_COMP) $^ -o $(vvadd_host_bin) - -vvadd_riscv_bin = vvadd.riscv -$(vvadd_riscv_bin) : $(vvadd_c_objs) $(vvadd_riscv_objs) - $(RISCV_LINK) $(vvadd_c_objs) $(vvadd_riscv_objs) -o $(vvadd_riscv_bin) $(RISCV_LINK_OPTS) - -junk += $(vvadd_c_objs) $(vvadd_riscv_objs) \ - $(vvadd_host_bin) $(vvadd_riscv_bin) |