Mercurial > hg > Members > kono > Cerium
annotate Renderer/Engine/Makefile @ 760:24a37fe8419a
first of all commit, not work Rendering/Test/create_task
author | hiroki |
---|---|
date | Thu, 04 Feb 2010 14:46:09 +0900 |
parents | b273767962b8 |
children | 088f64aad843 |
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 | |
523 | 7 cell: FORCE |
283 | 8 @echo "Make for PS3 (Cell)" |
507 | 9 @$(MAKE) -f Makefile.cell |
283 | 10 |
523 | 11 linux: FORCE |
283 | 12 @echo "Make for Linux" |
13 @$(MAKE) -f Makefile.linux | |
14 | |
15 macosx-depend: FORCE | |
16 @$(MAKE) -f Makefile.macosx depend | |
17 | |
507 | 18 cell-depend: FORCE |
19 @$(MAKE) -f Makefile.cell depend | |
283 | 20 |
21 linux-depend: FORCE | |
22 @$(MAKE) -f Makefile.linux depend | |
23 | |
24 FORCE: | |
523 | 25 -mkdir -p ../../include/Cerium |
26 rsync `find . -name Test -prune -or -name spe -prune -or -name task -prune -or -name '*.h' -print` ../../include/Cerium | |
510 | 27 |
283 | 28 |
29 clean: | |
30 @$(MAKE) -f Makefile.macosx clean | |
507 | 31 @$(MAKE) -f Makefile.cell clean |
283 | 32 @$(MAKE) -f Makefile.linux clean |
507 | 33 rm -f depend.inc |
34 |