Mercurial > hg > Game > Cerium
annotate TaskManager/Test/test_render/Makefile @ 520:8d86242337ba draft
SGList isn't used
author | tkaito@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Wed, 21 Oct 2009 19:56:00 +0900 |
parents | 67fb962f58fa |
children |
rev | line source |
---|---|
109 | 1 default: macosx |
2 | |
520 | 3 macosx: |
109 | 4 @echo "Make for Mac OS X" |
5 @$(MAKE) -f Makefile.macosx | |
6 | |
520 | 7 cell: |
109 | 8 @echo "Make for PS3 (Cell)" |
281 | 9 @$(MAKE) -f Makefile.cell |
109 | 10 |
520 | 11 linux: |
109 | 12 @echo "Make for Linux" |
13 @$(MAKE) -f Makefile.linux | |
14 | |
520 | 15 macosx-depend: |
155 | 16 @$(MAKE) -f Makefile.macosx depend |
17 | |
520 | 18 cell-depend: |
281 | 19 @$(MAKE) -f Makefile.cell depend |
161
18c42658e0e7
texture の座標がマイナスになったあと、それを 0 にし忘れてた
gongo@localhost.localdomain
parents:
155
diff
changeset
|
20 |
520 | 21 linux-depend: |
221 | 22 @$(MAKE) -f Makefile.linux depend |
23 | |
109 | 24 clean: |
25 @$(MAKE) -f Makefile.macosx clean | |
281 | 26 @$(MAKE) -f Makefile.cell clean |
109 | 27 @$(MAKE) -f Makefile.linux clean |
321 | 28 rm -f depend.inc |
29 | |
30 run-ps3: | |
496
67fb962f58fa
PS3 double linked TaskQueue worked.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
487
diff
changeset
|
31 /usr/*bin/ps3-video-mode -v 133 |
487 | 32 ./test_nogl -video fb -width 1920 -height 1080 $(CPU) $(SG) |
321 | 33 |
34 run-ps3tv: | |
35 ./test_nogl -video fb -width 576 -height 384 -bpp 32 | |
36 |