aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/lib/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/mppa/lib/Makefile')
-rw-r--r--test/mppa/lib/Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/mppa/lib/Makefile b/test/mppa/lib/Makefile
deleted file mode 100644
index 7aeab9f3..00000000
--- a/test/mppa/lib/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-prng-test-x86: prng.c
- gcc -D__UNIT_TEST_PRNG__ -O2 -std=c99 $< -o $@
-
-prng-test-k1c: prng.c
- k1-gcc -D__UNIT_TEST_PRNG__ -O2 -std=c99 $< -o $@
-
-.PHONY:
-test: test-x86 test-k1c
-
-.PHONY:
-test-x86: prng-test-x86
- @if ! ./$<; then\
- >&2 echo "ERROR: $< failed";\
- exit;\
- else\
- echo "x86: Test Succeeded";\
- fi
-
-.PHONY:
-test-k1c: prng-test-k1c
- @if ! k1-cluster -- ./$<; then\
- >&2 echo "ERROR: $< failed";\
- exit;\
- else\
- echo "k1c: Test Succeeded";\
- fi
-
-.PHONY:
-clean:
- rm -f prng-test-x86 prng-test-k1c