Mercurial > hg > Game > Cerium
annotate example/renew_task/Makefile @ 404:0d2dc1869cbe draft
rename cpp to cc
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 23 Sep 2009 12:23:01 +0900 |
parents | c29b7163d6d9 |
children | 4f907657132a |
rev | line source |
---|---|
192 | 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 | |
260 | 11 cell: FORCE |
12 @echo "Make for CELL (Cell)" | |
13 @$(MAKE) -f Makefile.cell | |
192 | 14 |
15 FORCE: | |
16 | |
17 clean: | |
18 @$(MAKE) -f Makefile.macosx clean | |
19 @$(MAKE) -f Makefile.linux clean | |
260 | 20 @$(MAKE) -f Makefile.cell clean |