aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2001-08-28 23:28:25 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2001-08-28 23:28:25 +0000
commitc34b88fd1323a05dfa89a292172997edbc299dd0 (patch)
tree9942829e7335c4ef8799ed383bc73b016403b0ac
parent0eca9ed813c0088d97e0e19127520e4f3bd7d75a (diff)
Makefile for tools/tests/
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@409 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/tests/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/tests/Makefile b/tools/tests/Makefile
new file mode 100644
index 0000000000..5dbcf7f62b
--- /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