annotate Renderer/Engine/Makefile.macosx @ 606:32a7260fad2f

32bit/64bit ABI (64 bit is not tested yet). 64bit ABI requires 64bit SDL library etc.
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 07 Nov 2009 18:05:52 +0900
parents 8148c81d2660
children 0decff4e867b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
1 include ./Makefile.def
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
2
507
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
3 SRCS_TMP = $(wildcard *.cc) $(wildcard Application/*.cc)
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
4 SRCS_EXCLUDE = # ½ü³°
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
5 SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP))
507
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
6 OBJS = $(SRCS:.cc=.o)
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
7
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
8 TASK_DIR = task
507
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
9 TASK_SRCS_TMP = $(wildcard $(TASK_DIR)/*.cc)
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
10 TASK_SRCS_EXCLUDE = span_pack_draw.cc
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
11 TASK_SRCS = $(filter-out $(TASK_SRCS_EXCLUDE),$(TASK_SRCS_TMP))
507
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
12 TASK_OBJS = $(TASK_SRCS:.cc=.o)
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
13
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
14 LIBS += -lFifoManager
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
15
606
32a7260fad2f 32bit/64bit ABI (64 bit is not tested yet).
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 509
diff changeset
16 CFLAGS += `sdl-config --cflags` `xml2-config --cflags`
32a7260fad2f 32bit/64bit ABI (64 bit is not tested yet).
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 509
diff changeset
17 LIBS += `sdl-config --libs` `xml2-config --libs` -lSDL_image -Wl,-framework,OpenGL
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
18
507
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
19 .SUFFIXES: .cc .o
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
20
507
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
21 .cc.o:
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
22 $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
23
509
8148c81d2660 Cerium Rendering Library
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 507
diff changeset
24 all: $(TARGET)
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
25
509
8148c81d2660 Cerium Rendering Library
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 507
diff changeset
26 $(TARGET) : $(OBJS) $(TASK_OBJS)
8148c81d2660 Cerium Rendering Library
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 507
diff changeset
27 $(AR) crus $@ $(OBJS) $(TASK_OBJS)
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
28
509
8148c81d2660 Cerium Rendering Library
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 507
diff changeset
29 # SGList.o: create_sg_list
8148c81d2660 Cerium Rendering Library
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 507
diff changeset
30 # $(CC) $(CFLAGS) $(INCLUDE) -c SGList.cc -o $@
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
31
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
32 create_sg_list:
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
33 @if [ ! -f SGList.h ]; then \
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
34 cd tools/;\
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
35 ./create_sglist.pl ../xml_file/*.xml;\
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
36 fi
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
37
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
38
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
39 run: $(TARGET)
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
40 sudo ./$(TARGET) -width 576 -height 384 -bpp 32
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
41
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
42 debug: $(TARGET)
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
43 sudo ppu-gdb ./$(TARGET)
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
44
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
45 depend:
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
46 $(RM) depend.inc
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
47 $(CC) -MM -MG $(INCLUDE) $(CFLAGS) $(SRCS) $(TASK_SRCS) > depend.inc
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
48
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
49 clean:
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
50 rm -f $(TARGET) $(OBJS) $(TASK_OBJS)
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
51 rm -f *~ \#*
507
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
52 rm -f SGList.h SGList.cc
283
55ea4465b1a2 fix test_render
e065746@localhost.localdomain
parents:
diff changeset
53
507
735f76483bb2 Reorganization..
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 283
diff changeset
54 -include depend.inc