Mercurial > hg > Game > Cerium
annotate TaskManager/Test/test_render/Makefile @ 397:ce86b0186a4a draft
delete manager (in kernel/ppe/TaskManager.h)
don't move.
author | game@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Sun, 20 Sep 2009 18:55:26 +0900 |
parents | 5b995810b86a |
children | b79c4b5f8a1b |
rev | line source |
---|---|
109 | 1 default: macosx |
2 | |
321 | 3 macosx: FORCE SGList.h |
109 | 4 @echo "Make for Mac OS X" |
5 @$(MAKE) -f Makefile.macosx | |
6 | |
321 | 7 cell: FORCE SGList.h |
109 | 8 @echo "Make for PS3 (Cell)" |
281 | 9 @$(MAKE) -f Makefile.cell |
109 | 10 |
321 | 11 linux: FORCE SGList.h |
109 | 12 @echo "Make for Linux" |
13 @$(MAKE) -f Makefile.linux | |
14 | |
155 | 15 macosx-depend: FORCE |
16 @$(MAKE) -f Makefile.macosx depend | |
17 | |
281 | 18 cell-depend: FORCE |
19 @$(MAKE) -f Makefile.cell depend | |
161
18c42658e0e7
texture の座標がマイナスになったあと、それを 0 にし忘れてた
gongo@localhost.localdomain
parents:
155
diff
changeset
|
20 |
221 | 21 linux-depend: FORCE |
22 @$(MAKE) -f Makefile.linux depend | |
23 | |
109 | 24 FORCE: |
25 | |
26 clean: | |
27 @$(MAKE) -f Makefile.macosx clean | |
281 | 28 @$(MAKE) -f Makefile.cell clean |
109 | 29 @$(MAKE) -f Makefile.linux clean |
321 | 30 rm -f depend.inc |
31 | |
32 SGList.h: xml_file/*.xml | |
33 perl tools/create_sglist.pl xml_file/*.xml | |
34 | |
35 run-ps3: | |
36 ps3-video-mode -v 133 | |
336
461dcf7397ac
change Makefile run-ps3 "-width 1980" -> "-width 1920"
hiroki@henri.cr.ie.u-ryukyu.ac.jp
parents:
321
diff
changeset
|
37 ./test_nogl -video fb -width 1920 -height 1080 |
321 | 38 |
39 run-ps3tv: | |
40 ./test_nogl -video fb -width 576 -height 384 -bpp 32 | |
41 |