aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/vvadd/bmark.mk
blob: d03cb96ce2baa0ec1db47d0bd18fdf28cbdd7112 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#=======================================================================
# 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 \

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)

junk += $(vvadd_c_objs) $(vvadd_riscv_objs) \
        $(vvadd_host_bin) $(vvadd_riscv_bin)