Mercurial > hg > Game > Cerium
annotate TaskManager/Test/test_render/Makefile @ 280:3220ff9fbc5a draft
test_render can not
author | e075766@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Thu, 04 Jun 2009 18:45:25 +0900 |
parents | 0b0e0f323742 |
children | ef6b225f6f40 |
rev | line source |
---|---|
109 | 1 default: macosx |
2 | |
3 macosx: FORCE | |
4 @echo "Make for Mac OS X" | |
5 @$(MAKE) -f Makefile.macosx | |
6 | |
280 | 7 cell: FORCE |
109 | 8 @echo "Make for PS3 (Cell)" |
280 | 9 @$(MAKE) -f Makefile.cell |
109 | 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 | |
280 | 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 | |
280 | 28 @$(MAKE) -f Makefile.cell clean |
109 | 29 @$(MAKE) -f Makefile.linux clean |
280 | 30 rm -f depend.inc |
31 | |
32 sglist: | |
33 perl tools/create_sglist.pl xml_file/*.xml |