benchmarks initial commit
[riscv-tests.git] / benchmarks / spmv / bmark.mk
1 #=======================================================================
2 # UCB CS250 Makefile fragment for benchmarks
3 #-----------------------------------------------------------------------
4 #
5 # Each benchmark directory should have its own fragment which
6 # essentially lists what the source files are and how to link them
7 # into an riscv and/or host executable. All variables should include
8 # the benchmark name as a prefix so that they are unique.
9 #
10
11 spmv_c_src = \
12 spmv_main.c \
13
14 spmv_riscv_src = \
15 crt.S \
16
17 spmv_c_objs = $(patsubst %.c, %.o, $(spmv_c_src))
18 spmv_riscv_objs = $(patsubst %.S, %.o, $(spmv_riscv_src))
19
20 spmv_host_bin = spmv.host
21 $(spmv_host_bin) : $(spmv_c_src)
22 $(HOST_COMP) $^ -o $(spmv_host_bin)
23
24 spmv_riscv_bin = spmv.riscv
25 $(spmv_riscv_bin) : $(spmv_c_objs) $(spmv_riscv_objs)
26 $(RISCV_LINK) $(spmv_c_objs) $(spmv_riscv_objs) -o $(spmv_riscv_bin)
27
28 junk += $(spmv_c_objs) $(spmv_riscv_objs) \
29 $(spmv_host_bin) $(spmv_riscv_bin)