283
|
1 default: macosx
|
|
2
|
|
3 macosx: FORCE
|
|
4 @echo "Make for Mac OS X"
|
|
5 @$(MAKE) -f Makefile.macosx
|
|
6
|
|
7 ps3: FORCE
|
|
8 @echo "Make for PS3 (Cell)"
|
|
9 @$(MAKE) -f Makefile.ps3
|
|
10
|
|
11 linux: FORCE
|
|
12 @echo "Make for Linux"
|
|
13 @$(MAKE) -f Makefile.linux
|
|
14
|
|
15 macosx-depend: FORCE
|
|
16 @$(MAKE) -f Makefile.macosx depend
|
|
17
|
|
18 ps3-depend: FORCE
|
|
19 @$(MAKE) -f Makefile.ps3 depend
|
|
20
|
|
21 linux-depend: FORCE
|
|
22 @$(MAKE) -f Makefile.linux depend
|
|
23
|
|
24 FORCE:
|
|
25
|
|
26 clean:
|
|
27 @$(MAKE) -f Makefile.macosx clean
|
|
28 @$(MAKE) -f Makefile.ps3 clean
|
|
29 @$(MAKE) -f Makefile.linux clean
|
|
30 rm -f depend.inc |