aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/sort/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/mppa/sort/Makefile')
-rw-r--r--test/mppa/sort/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/mppa/sort/Makefile b/test/mppa/sort/Makefile
index f94fe6b8..26c597be 100644
--- a/test/mppa/sort/Makefile
+++ b/test/mppa/sort/Makefile
@@ -13,19 +13,19 @@ all: $(ALL)
gcc -g -D__UNIT_TEST_$$(echo $(basename $<) | tr a-z A-Z)__ -O2 -std=c99 $^ -o $@
%-test-k1c: %.c $(PRNG)
- k1-gcc -g -D__UNIT_TEST_$$(echo $(basename $<) | tr a-z A-Z)__ -O2 -std=c99 $^ -o $@
+ k1-mbr-gcc -g -D__UNIT_TEST_$$(echo $(basename $<) | tr a-z A-Z)__ -O2 -std=c99 $^ -o $@
test-x86: selection.c merge.c insertion.c test.c $(PRNG)
gcc -g -O2 -std=c99 $^ -o $@
test-k1c: selection.c merge.c insertion.c test.c $(PRNG)
- k1-gcc -g -O2 -std=c99 $^ -o $@
+ k1-mbr-gcc -g -O2 -std=c99 $^ -o $@
%.s: %.c $(CCOMP)
ccomp -O2 -S $< -o $@
test-ccomp: selection.s merge.s insertion.s test.s $(subst .c,.s,$(PRNG))
- k1-gcc $^ -o $@
+ k1-mbr-gcc $^ -o $@
.PHONY:
unittest: unittest-x86 unittest-k1c