Mercurial > hg > Game > Cerium
annotate example/HelloWorld/Makefile @ 253:0c9c9906d777 draft
usr_help_str is nessesary for example
author | tkaito@localhost.localdomain |
---|---|
date | Wed, 03 Jun 2009 14:32:41 +0900 |
parents | 028ffc9c0375 |
children | 4f907657132a |
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 | |
253
0c9c9906d777
usr_help_str is nessesary for example
tkaito@localhost.localdomain
parents:
109
diff
changeset
|
11 cell: FORCE |
109 | 12 @echo "Make for PS3 (Cell)" |
253
0c9c9906d777
usr_help_str is nessesary for example
tkaito@localhost.localdomain
parents:
109
diff
changeset
|
13 @$(MAKE) -f Makefile.cell |
109 | 14 |
15 FORCE: | |
16 | |
17 clean: | |
18 @$(MAKE) -f Makefile.macosx clean | |
19 @$(MAKE) -f Makefile.linux clean | |
253
0c9c9906d777
usr_help_str is nessesary for example
tkaito@localhost.localdomain
parents:
109
diff
changeset
|
20 @$(MAKE) -f Makefile.cell clean |