Mercurial > hg > Game > Cerium
annotate example/Null/Makefile @ 1299:f0e805c09ed6 draft
minor fix xml_walk and pickup_float, not work yet.
author | Yutaka_Kinjyo <yutaka@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 04 Dec 2011 18:50:53 +0900 |
parents | e38a4f3e238d |
children |
rev | line source |
---|---|
1285 | 1 default: macosx |
2 | |
3 macosx: FORCE | |
4 @echo "Make for Mac OS X" | |
5 @$(MAKE) -f Makefile.macosx | |
6 | |
7 fifo64: FORCE | |
8 @echo "Make for Mac OS X 64bit mode" | |
9 @$(MAKE) -f Makefile.macosx ABIBIT=64 | |
10 | |
11 linux: FORCE | |
12 @echo "Make for Linux" | |
13 @$(MAKE) -f Makefile.linux | |
14 | |
15 cell: FORCE | |
16 @echo "Make for PS3 (Cell)" | |
17 @$(MAKE) -f Makefile.cell | |
18 | |
19 FORCE: | |
20 | |
21 clean: | |
22 @$(MAKE) -f Makefile.macosx clean | |
23 @$(MAKE) -f Makefile.linux clean | |
24 @$(MAKE) -f Makefile.cell clean |