Makefile for tools/tests/

llvm-svn: 409
This commit is contained in:
Vikram S. Adve 2001-08-28 23:28:25 +00:00
parent 8ff24b26c9
commit 4968d07d19
1 changed files with 13 additions and 0 deletions

13
llvm/tools/tests/Makefile Normal file
View File

@ -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