1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/tools/tests/Makefile
Vikram S. Adve c90d21f261 Makefile for tools/tests/
llvm-svn: 409
2001-08-28 23:28:25 +00:00

14 lines
184 B
Makefile

LEVEL = ../..
include $(LEVEL)/Makefile.common
all:: testPow2
clean::
rm -f testPow2
testPow2 : $(ObjectsG)
$(LinkG) -o testPow2 $(ObjectsG) -lsupport
run: testPow2
testPow2 25