comparison Renderer/Test/Makefile.macosx @ 562:a5fda4e51498

name search
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 22 Oct 2009 22:22:31 +0900
parents 71b3363c16bf
children b21a013051a2
comparison
equal deleted inserted replaced
561:71b3363c16bf 562:a5fda4e51498
12 12
13 all: ball_bound boss1_action direction gaplant 13 all: ball_bound boss1_action direction gaplant
14 14
15 15
16 BALL_BOUND_OBJ = ball_bound.o 16 BALL_BOUND_OBJ = ball_bound.o
17 BALL_BOUND_XML = xml_file/Ball.xml 17 ball_bound : $(BALL_BOUND_OBJ)
18 ball_bound : $(BALL_BOUND_OBJ) $(BALL_BOUND_XML).o 18 $(CC) -o $@ $? $(LIBS)
19 $(CC) -o $@ $< $(BALL_BOUND_XML).o $(LIBS)
20 ball_bound.cc : $(BALL_BOUND_XML).h
21 $(BALL_BOUND_XML).cc $(BALL_BOUND_XML).h : $(BALL_BOUND_XML)
22 perl $(TOOL)/create_sglist.pl -o $@ $(BALL_BOUND_XML)
23 19
24 BOSS_OBJ = boss1_action.o 20 BOSS_OBJ = boss1_action.o
25 BOSS_XMLS = xml_file/boss1.xml xml_file/player1.xml xml_file/p_shot.xml xml_file/blast.xml 21 boss1_action : $(BOSS_OBJ)
26 BOSS_XML = xml_file/boss1.xml 22 $(CC) -o $@ $? $(LIBS)
27 boss1_action : $(BOSS_OBJ) xml_file/boss1.xml.o
28 $(CC) -o $@ $< xml_file/boss1.xml.o $(LIBS)
29 boss1_action.cc : $(BOSS_XML).h
30 xml_file/boss1.xml.h : $(BOSS_XMLS)
31 perl $(TOOL)/create_sglist.pl -o $@ $(BOSS_XMLS)
32 23
33 DIRECTION_OBJ = direction.o 24 DIRECTION_OBJ = direction.o
34 DIRECTION_XML = xml_file/direction.xml 25 direction : $(DIRECTION_OBJ)
35 DIRECTION_XMLS = $(DIRECTION_XML) 26 $(CC) -o $@ $? $(LIBS)
36 direction : $(DIRECTION_OBJ) xml_file/direction.xml.o
37 $(CC) -o $@ $< xml_file/direction.xml.o $(LIBS)
38 direction.cc : xml_file/direction.xml.h
39 xml_file/direction.xml.h : $(DIRECTION_XMLS)
40 perl $(TOOL)/create_sglist.pl -o $@ $(DIRECTION_XMLS)
41 27
42 GAPLAN_OBJ = gaplant.o gaplant_action.o back_action.o ball_action.o 28 GAPLAN_OBJ = gaplant.o gaplant_action.o back_action.o ball_action.o
43 GAPLAN_XML = xml_file/gap_plane_test.xml 29 gaplant : $(GAPLAN_OBJ)
44 GAPLAN_XMLS = $(GAPLAN_XML) xml_file/Ball.xml
45 gaplant : $(GAPLAN_OBJ) xml_file/gap_plane_test.xml.o
46 $(CC) -o $@ $? $(LIBS) 30 $(CC) -o $@ $? $(LIBS)
47 gaplant.cc : xml_file/gap_plane_test.xml.h
48 xml_file/gap_plane_test.xml.h : $(GAPLAN_XMLS)
49 perl $(TOOL)/create_sglist.pl -o $@ $(GAPLAN_XMLS)
50 31
51 32
52 run: $(TARGET) 33 run: $(TARGET)
53 sudo ./$(TARGET) -width 576 -height 384 -bpp 32 34 sudo ./$(TARGET) -width 576 -height 384 -bpp 32
54 35