mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
c90d21f261
llvm-svn: 409
14 lines
184 B
Makefile
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
|