Mercurial > hg > Members > kono > Cerium
annotate TaskManager/Test/test_render/Makefile @ 174:559b48b69b76
getScale()、getTapestry から、span->length に適切なテクスチャの選択に成功
author | gongo@localhost.localdomain |
---|---|
date | Fri, 12 Dec 2008 12:23:20 +0900 |
parents | 1f4c3f3238e6 |
children | d61fded0729e |
rev | line source |
---|---|
109 | 1 default: macosx |
2 | |
3 macosx: FORCE | |
4 @echo "Make for Mac OS X" | |
5 @$(MAKE) -f Makefile.macosx | |
6 | |
7 ps3: FORCE | |
8 @echo "Make for PS3 (Cell)" | |
9 @$(MAKE) -f Makefile.ps3 | |
10 | |
11 linux: FORCE | |
12 @echo "Make for Linux" | |
13 @$(MAKE) -f Makefile.linux | |
14 | |
155 | 15 macosx-depend: FORCE |
16 @$(MAKE) -f Makefile.macosx depend | |
17 | |
161
1f4c3f3238e6
texture の座標がマイナスになったあと、それを 0 にし忘れてた
gongo@localhost.localdomain
parents:
155
diff
changeset
|
18 ps3-depend: FORCE |
1f4c3f3238e6
texture の座標がマイナスになったあと、それを 0 にし忘れてた
gongo@localhost.localdomain
parents:
155
diff
changeset
|
19 @$(MAKE) -f Makefile.ps3 depend |
1f4c3f3238e6
texture の座標がマイナスになったあと、それを 0 にし忘れてた
gongo@localhost.localdomain
parents:
155
diff
changeset
|
20 |
109 | 21 FORCE: |
22 | |
23 clean: | |
24 @$(MAKE) -f Makefile.macosx clean | |
25 @$(MAKE) -f Makefile.ps3 clean | |
26 @$(MAKE) -f Makefile.linux clean | |
161
1f4c3f3238e6
texture の座標がマイナスになったあと、それを 0 にし忘れてた
gongo@localhost.localdomain
parents:
155
diff
changeset
|
27 |