9
|
1 default: macosx FORCE
|
0
|
2
|
9
|
3 macosx:
|
|
4 @echo "Make for Mac OS X"
|
|
5 @$(MAKE) -f Makefile.mac
|
1
|
6
|
9
|
7 fifo64: FORCE
|
|
8 @$(MAKE) -f Makefile.macosx ABIBIT=64
|
0
|
9
|
9
|
10 cell: FORCE
|
|
11 @echo "Make for PS3 (Cell)"
|
|
12 @$(MAKE) -f Makefile.ps3
|
0
|
13
|
9
|
14 macosx-depend: FORCE
|
14
|
15 @$(MAKE) -f Makefile.mac depend
|
0
|
16
|
9
|
17 cell-depend: FORCE
|
14
|
18 @$(MAKE) -f Makefile.ps3 depend
|
0
|
19
|
9
|
20 FORCE:
|
|
21 -mkdir -p ../../include/Cerium
|
|
22 rsync `find . -name Test -prune -or -name spe -prune -or -name task -prune -or -name '*.h' -print` ../../include/Cerium
|
1
|
23
|
0
|
24
|
|
25 clean:
|
14
|
26 @$(MAKE) -f Makefile.mac clean
|
|
27 @$(MAKE) -f Makefile.ps3 clean
|
9
|
28 rm -f depend.inc
|
0
|
29
|