Mercurial > hg > Members > kono > Cerium
annotate Renderer/Engine/Makefile @ 845:1e3b67117ad9
light bug fix.
author | Yutaka_Kinjyo |
---|---|
date | Thu, 03 Jun 2010 02:55:29 +0900 |
parents | 088f64aad843 |
children |
rev | line source |
---|---|
510 | 1 default: macosx FORCE |
283 | 2 |
509
8148c81d2660
Cerium Rendering Library
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
507
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 | |
523 | 10 cell: FORCE |
283 | 11 @echo "Make for PS3 (Cell)" |
507 | 12 @$(MAKE) -f Makefile.cell |
283 | 13 |
523 | 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 | |
507 | 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: | |
523 | 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 | |
510 | 30 |
283 | 31 |
32 clean: | |
33 @$(MAKE) -f Makefile.macosx clean | |
507 | 34 @$(MAKE) -f Makefile.cell clean |
283 | 35 @$(MAKE) -f Makefile.linux clean |
507 | 36 rm -f depend.inc |
37 |