Delete unused benchmark
[riscv-tests.git] / benchmarks / sort / bmark.mk
diff --git a/benchmarks/sort/bmark.mk b/benchmarks/sort/bmark.mk
deleted file mode 100644 (file)
index 1e76b68..0000000
+++ /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)