annotate Renderer/Engine/Makefile @ 639:70c5c2d2eb24

fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 19 Nov 2009 18:45:24 +0900
parents b273767962b8
children 088f64aad843
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
510
97e1b0346597 continue...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 509
diff changeset
1 default: macosx FORCE
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
2
509
8148c81d2660 Cerium Rendering Library
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 507
diff changeset
3 macosx:
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
4 @echo "Make for Mac OS X"
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
5 @$(MAKE) -f Makefile.macosx
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
6
523
b273767962b8 half finish for Cell
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 510
diff changeset
7 cell: FORCE
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
8 @echo "Make for PS3 (Cell)"
507
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
9 @$(MAKE) -f Makefile.cell
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
10
523
b273767962b8 half finish for Cell
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 510
diff changeset
11 linux: FORCE
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
12 @echo "Make for Linux"
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
13 @$(MAKE) -f Makefile.linux
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
14
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
15 macosx-depend: FORCE
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
16 @$(MAKE) -f Makefile.macosx depend
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
17
507
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
18 cell-depend: FORCE
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
19 @$(MAKE) -f Makefile.cell depend
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
20
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
21 linux-depend: FORCE
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
22 @$(MAKE) -f Makefile.linux depend
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
23
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
24 FORCE:
523
b273767962b8 half finish for Cell
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 510
diff changeset
25 -mkdir -p ../../include/Cerium
b273767962b8 half finish for Cell
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 510
diff changeset
26 rsync `find . -name Test -prune -or -name spe -prune -or -name task -prune -or -name '*.h' -print` ../../include/Cerium
510
97e1b0346597 continue...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 509
diff changeset
27
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
28
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
29 clean:
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
30 @$(MAKE) -f Makefile.macosx clean
507
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
31 @$(MAKE) -f Makefile.cell clean
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
32 @$(MAKE) -f Makefile.linux clean
507
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
33 rm -f depend.inc
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
34