Mercurial > hg > Game > Cerium
annotate TaskManager/Test/test_render/Makefile @ 282:ef6b225f6f40 draft
fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 05 Jun 2009 16:08:00 +0900 |
parents | 3220ff9fbc5a f05d6c185f55 |
children | 15bfacccde99 |
rev | line source |
---|---|
109 | 1 default: macosx |
2 | |
3 macosx: FORCE | |
4 @echo "Make for Mac OS X" | |
5 @$(MAKE) -f Makefile.macosx | |
6 | |
281 | 7 cell: FORCE |
109 | 8 @echo "Make for PS3 (Cell)" |
281 | 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 | |
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 | |
32 sglist: | |
33 perl tools/create_sglist.pl xml_file/*.xml |