Mercurial > hg > Game > Cerium
annotate Renderer/Engine/Makefile @ 542:109a33b72b10 draft
continue...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 12 Oct 2009 15:48:40 +0900 |
parents | 1a31b8820a4d |
children | c5e09e9bbfa5 |
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 | |
541
1a31b8820a4d
Cerium Rendering Library
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
539
diff
changeset
|
7 cell: |
283 | 8 @echo "Make for PS3 (Cell)" |
539 | 9 @$(MAKE) -f Makefile.cell |
283 | 10 |
541
1a31b8820a4d
Cerium Rendering Library
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
539
diff
changeset
|
11 linux: |
283 | 12 @echo "Make for Linux" |
13 @$(MAKE) -f Makefile.linux | |
14 | |
15 macosx-depend: FORCE | |
16 @$(MAKE) -f Makefile.macosx depend | |
17 | |
539 | 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: | |
542 | 25 -mkdir -p ../include/Cerium |
26 rsync `find . -name Test -prune -or -name '*.h' -print` ../../include/Cerium | |
27 | |
283 | 28 |
29 clean: | |
30 @$(MAKE) -f Makefile.macosx clean | |
539 | 31 @$(MAKE) -f Makefile.cell clean |
283 | 32 @$(MAKE) -f Makefile.linux clean |
539 | 33 rm -f depend.inc |
34 |