aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/sort/bmark.mk
blob: 1e76b68337e0d2e6cc51d4c7bd3b933c3d75dbf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

sort_c_src = \
	sort_main.c \
	sort.c \
	syscalls.c \

sort_riscv_src = \
	crt.S

sort_c_objs			= $(patsubst %.c, %.o, $(sort_c_src))
sort_riscv_objs = $(patsubst %.S, %.o, $(sort_riscv_src))

sort_host_bin = sort.host 
$(sort_host_bin): $(sort_c_src)
	$(HOST_COMP) $^ -o $(sort_host_bin)

sort_riscv_bin = sort.riscv 
$(sort_riscv_bin): $(sort_c_objs) $(sort_riscv_objs)
	$(RISCV_LINK) $(sort_c_objs) $(sort_riscv_objs) -o $(sort_riscv_bin) $(RISCV_LINK_OPTS)

junk += $(sort_c_objs) $(sort_riscv_objs) $(sort_host_bin) $(sort_riscv_bin)