diff options
Diffstat (limited to 'benchmarks/sort/bmark.mk')
-rw-r--r-- | benchmarks/sort/bmark.mk | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/benchmarks/sort/bmark.mk b/benchmarks/sort/bmark.mk deleted file mode 100644 index 1e76b68..0000000 --- a/benchmarks/sort/bmark.mk +++ /dev/null @@ -1,21 +0,0 @@ - -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) |