diff options
| -rw-r--r-- | llvm/tools/tests/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/llvm/tools/tests/Makefile b/llvm/tools/tests/Makefile new file mode 100644 index 00000000000..5dbcf7f62b9 --- /dev/null +++ b/llvm/tools/tests/Makefile @@ -0,0 +1,13 @@ +LEVEL = ../.. +include $(LEVEL)/Makefile.common + +all:: testPow2 + +clean:: + rm -f testPow2 + +testPow2 : $(ObjectsG) + $(LinkG) -o testPow2 $(ObjectsG) -lsupport + +run: testPow2 + testPow2 25 |

