From: Vikram S. Adve Date: Tue, 28 Aug 2001 23:28:25 +0000 (+0000) Subject: Makefile for tools/tests/ X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c34b88fd1323a05dfa89a292172997edbc299dd0;p=oota-llvm.git Makefile for tools/tests/ git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@409 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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