Remove smips/host-debugging cruft
[riscv-tests.git] / benchmarks / vvadd / 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 vvadd_c_src = \
12 vvadd_main.c \
13 syscalls.c \
14
15 vvadd_riscv_src = \
16 crt.S \
17
18 vvadd_c_objs = $(patsubst %.c, %.o, $(vvadd_c_src))
19 vvadd_riscv_objs = $(patsubst %.S, %.o, $(vvadd_riscv_src))
20
21 vvadd_host_bin = vvadd.host
22 $(vvadd_host_bin) : $(vvadd_c_src)
23 $(HOST_COMP) $^ -o $(vvadd_host_bin)
24
25 vvadd_riscv_bin = vvadd.riscv
26 $(vvadd_riscv_bin) : $(vvadd_c_objs) $(vvadd_riscv_objs)
27 $(RISCV_LINK) $(vvadd_c_objs) $(vvadd_riscv_objs) -o $(vvadd_riscv_bin) $(RISCV_LINK_OPTS)
28
29 junk += $(vvadd_c_objs) $(vvadd_riscv_objs) \
30 $(vvadd_host_bin) $(vvadd_riscv_bin)