283
|
1 default: macosx
|
|
2
|
539
|
3 macosx: FORCE SGList.h
|
283
|
4 @echo "Make for Mac OS X"
|
|
5 @$(MAKE) -f Makefile.macosx
|
|
6
|
539
|
7 cell: FORCE SGList.h
|
283
|
8 @echo "Make for PS3 (Cell)"
|
539
|
9 @$(MAKE) -f Makefile.cell
|
283
|
10
|
539
|
11 linux: FORCE SGList.h
|
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:
|
|
25
|
|
26 clean:
|
|
27 @$(MAKE) -f Makefile.macosx clean
|
539
|
28 @$(MAKE) -f Makefile.cell clean
|
283
|
29 @$(MAKE) -f Makefile.linux clean
|
539
|
30 rm -f depend.inc
|
|
31
|
|
32 SGList.h: xml_file/*.xml
|
|
33 perl tools/create_sglist.pl xml_file/*.xml
|
|
34
|
|
35 run-ps3:
|
|
36 /usr/*bin/ps3-video-mode -v 133
|
|
37 ./test_nogl -video fb -width 1920 -height 1080 $(CPU) $(SG)
|
|
38
|
|
39 run-ps3tv:
|
|
40 ./test_nogl -video fb -width 576 -height 384 -bpp 32
|
|
41
|