Mercurial > hg > Game > Cerium
annotate example/HelloWorld/Makefile @ 1716:c12df61ded45 draft
fix gpu profile. not work yet
author | Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 15 Oct 2013 17:21:10 +0900 |
parents | a215927a9885 |
children | 131d90cc3f85 |
rev | line source |
---|---|
109 | 1 default: macosx |
2 | |
3 macosx: FORCE | |
4 @echo "Make for Mac OS X" | |
5 @$(MAKE) -f Makefile.macosx | |
6 | |
794 | 7 fifo64: FORCE |
8 @echo "Make for Mac OS X 64bit mode" | |
869 | 9 @$(MAKE) -f Makefile.macosx ABIBIT=64 |
794 | 10 |
109 | 11 linux: FORCE |
12 @echo "Make for Linux" | |
13 @$(MAKE) -f Makefile.linux | |
14 | |
253
0c9c9906d777
usr_help_str is nessesary for example
tkaito@localhost.localdomain
parents:
109
diff
changeset
|
15 cell: FORCE |
109 | 16 @echo "Make for PS3 (Cell)" |
253
0c9c9906d777
usr_help_str is nessesary for example
tkaito@localhost.localdomain
parents:
109
diff
changeset
|
17 @$(MAKE) -f Makefile.cell |
109 | 18 |
19 FORCE: | |
20 | |
21 clean: | |
22 @$(MAKE) -f Makefile.macosx clean | |
23 @$(MAKE) -f Makefile.linux clean | |
253
0c9c9906d777
usr_help_str is nessesary for example
tkaito@localhost.localdomain
parents:
109
diff
changeset
|
24 @$(MAKE) -f Makefile.cell clean |