Mercurial > hg > Members > kono > Cerium
annotate TaskManager/Test/test_render/Makefile @ 131:805d27efafd8
fix
author | gongo@charles.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Tue, 25 Nov 2008 17:24:18 +0900 |
parents | 5c194c71eca8 |
children | 77dac07efd79 |
rev | line source |
---|---|
109 | 1 default: macosx |
2 | |
3 macosx: FORCE | |
4 @echo "Make for Mac OS X" | |
5 @$(MAKE) -f Makefile.macosx | |
6 | |
7 ps3: FORCE | |
8 @echo "Make for PS3 (Cell)" | |
9 @$(MAKE) -f Makefile.ps3 | |
10 | |
11 linux: FORCE | |
12 @echo "Make for Linux" | |
13 @$(MAKE) -f Makefile.linux | |
14 | |
15 FORCE: | |
16 | |
17 clean: | |
18 @$(MAKE) -f Makefile.macosx clean | |
19 @$(MAKE) -f Makefile.ps3 clean | |
20 @$(MAKE) -f Makefile.linux clean | |
21 |