Makefile for tools/tests/

llvm-svn: 409
This commit is contained in:
Vikram S. Adve 2001-08-28 23:28:25 +00:00
parent b61f869552
commit c90d21f261

13
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