Mercurial > hg > Members > kono > Cerium
annotate example/basic/Makefile @ 760:24a37fe8419a
first of all commit, not work Rendering/Test/create_task
author | hiroki |
---|---|
date | Thu, 04 Feb 2010 14:46:09 +0900 |
parents | 465a871f4c07 |
children | 088f64aad843 |
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 linux: FORCE | |
8 @echo "Make for Linux" | |
9 @$(MAKE) -f Makefile.linux | |
10 | |
256 | 11 cell: FORCE |
109 | 12 @echo "Make for PS3 (Cell)" |
256 | 13 @$(MAKE) -f Makefile.cell |
109 | 14 |
15 FORCE: | |
16 | |
17 clean: | |
18 @$(MAKE) -f Makefile.macosx clean | |
19 @$(MAKE) -f Makefile.linux clean | |
256 | 20 @$(MAKE) -f Makefile.cell clean |