blob: cdc05452a795bcf196e02a17355f7ee082f0e6db (
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.
#
qsort_c_src = \
qsort_main.c \
qsort_riscv_src = \
crt.S \
qsort_c_objs = $(patsubst %.c, %.o, $(qsort_c_src))
qsort_riscv_objs = $(patsubst %.S, %.o, $(qsort_riscv_src))
qsort_host_bin = qsort.host
$(qsort_host_bin) : $(qsort_c_src)
$(HOST_COMP) $^ -o $(qsort_host_bin)
qsort_riscv_bin = qsort.riscv
$(qsort_riscv_bin) : $(qsort_c_objs) $(qsort_riscv_objs)
$(RISCV_LINK) $(qsort_c_objs) $(qsort_riscv_objs) -o $(qsort_riscv_bin)
junk += $(qsort_c_objs) $(qsort_riscv_objs) \
$(qsort_host_bin) $(qsort_riscv_bin)
|