blob: 5dbcf7f62b9dceea97dd009ca0baae842022b83c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
LEVEL = ../..
include $(LEVEL)/Makefile.common
all:: testPow2
clean::
rm -f testPow2
testPow2 : $(ObjectsG)
$(LinkG) -o testPow2 $(ObjectsG) -lsupport
run: testPow2
testPow2 25
|