Mercurial > hg > Game > Cerium
annotate TaskManager/Test/test_render/Makefile @ 354:cfd20d609ace draft
add example/get_segment and change spe/DrawSpan.cpp
author | koba |
---|---|
date | Wed, 15 Jul 2009 17:39:51 +0900 |
parents | 15bfacccde99 |
children | 5b995810b86a |
rev | line source |
---|---|
109 | 1 default: macosx |
2 | |
283 | 3 macosx: FORCE SGList.h |
109 | 4 @echo "Make for Mac OS X" |
5 @$(MAKE) -f Makefile.macosx | |
6 | |
283 | 7 cell: FORCE SGList.h |
109 | 8 @echo "Make for PS3 (Cell)" |
281 | 9 @$(MAKE) -f Makefile.cell |
109 | 10 |
283 | 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 |
280 | 30 rm -f depend.inc |
31 | |
283 | 32 SGList.h: xml_file/*.xml |
280 | 33 perl tools/create_sglist.pl xml_file/*.xml |
354 | 34 |
35 run-ps3: | |
36 ps3-video-mode -v 133 | |
37 ./test_nogl -video fb -width 1920 -height 1080 | |
38 | |
39 run-ps3tv: | |
40 ./test_nogl -video fb -width 576 -height 384 -bpp 32 | |
41 |