comparison Renderer/Engine/Makefile @ 539:3bc98f6d31ff draft

Reorganization..
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 12 Oct 2009 09:39:35 +0900
parents Renderer/test_render/Makefile@15bfacccde99
children 1a31b8820a4d
comparison
equal deleted inserted replaced
538:5641d121818e 539:3bc98f6d31ff
1 default: macosx
2
3 macosx: FORCE SGList.h
4 @echo "Make for Mac OS X"
5 @$(MAKE) -f Makefile.macosx
6
7 cell: FORCE SGList.h
8 @echo "Make for PS3 (Cell)"
9 @$(MAKE) -f Makefile.cell
10
11 linux: FORCE SGList.h
12 @echo "Make for Linux"
13 @$(MAKE) -f Makefile.linux
14
15 macosx-depend: FORCE
16 @$(MAKE) -f Makefile.macosx depend
17
18 cell-depend: FORCE
19 @$(MAKE) -f Makefile.cell 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.cell clean
29 @$(MAKE) -f Makefile.linux clean
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