From c34b88fd1323a05dfa89a292172997edbc299dd0 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Tue, 28 Aug 2001 23:28:25 +0000 Subject: [PATCH] Makefile for tools/tests/ git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@409 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/tests/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tools/tests/Makefile diff --git a/tools/tests/Makefile b/tools/tests/Makefile new file mode 100644 index 00000000000..5dbcf7f62b9 --- /dev/null +++ b/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 -- 2.34.1