diff --git a/llvm/tools/tests/Makefile b/llvm/tools/tests/Makefile new file mode 100644 index 000000000000..5dbcf7f62b9d --- /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