Mercurial > hg > Game > Cerium
annotate Renderer/Engine/Makefile @ 987:6c3dffa8996f draft akira
merge
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 02 Oct 2010 03:19:33 +0900 |
parents | 4f907657132a |
children | 880f989ce52a |
rev | line source |
---|---|
542 | 1 default: macosx FORCE |
283 | 2 |
541
1a31b8820a4d
Cerium Rendering Library
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
539
diff
changeset
|
3 macosx: |
283 | 4 @echo "Make for Mac OS X" |
5 @$(MAKE) -f Makefile.macosx | |
6 | |
794 | 7 fifo64: FORCE |
8 @$(MAKE) -f Makefile.macosx ABIBIT=64 | |
9 | |
555 | 10 cell: FORCE |
283 | 11 @echo "Make for PS3 (Cell)" |
539 | 12 @$(MAKE) -f Makefile.cell |
283 | 13 |
555 | 14 linux: FORCE |
283 | 15 @echo "Make for Linux" |
16 @$(MAKE) -f Makefile.linux | |
17 | |
18 macosx-depend: FORCE | |
19 @$(MAKE) -f Makefile.macosx depend | |
20 | |
539 | 21 cell-depend: FORCE |
22 @$(MAKE) -f Makefile.cell depend | |
283 | 23 |
24 linux-depend: FORCE | |
25 @$(MAKE) -f Makefile.linux depend | |
26 | |
27 FORCE: | |
555 | 28 -mkdir -p ../../include/Cerium |
29 rsync `find . -name Test -prune -or -name spe -prune -or -name task -prune -or -name '*.h' -print` ../../include/Cerium | |
542 | 30 |
283 | 31 |
32 clean: | |
33 @$(MAKE) -f Makefile.macosx clean | |
539 | 34 @$(MAKE) -f Makefile.cell clean |
283 | 35 @$(MAKE) -f Makefile.linux clean |
539 | 36 rm -f depend.inc |
37 |