Mercurial > hg > Game > Cerium
annotate example/word_count/Makefile @ 1130:5addc6c1d5c4 draft
fix.
author | root@dolphins.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Sun, 13 Feb 2011 22:34:44 +0900 |
parents | 852ed17d8af1 |
children | fac06524090b |
rev | line source |
---|---|
393 | 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 | |
11 cell: FORCE | |
12 @echo "Make for CELL (Cell)" | |
13 @$(MAKE) -f Makefile.cell | |
14 | |
15 FORCE: | |
16 | |
17 clean: | |
18 @$(MAKE) -f Makefile.macosx clean | |
19 @$(MAKE) -f Makefile.linux clean | |
20 @$(MAKE) -f Makefile.cell clean |