comparison Renderer/Test/Makefile.macosx @ 560:1a2f015c42b2

gaplant... how to solve scenegraph id conflict?
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 22 Oct 2009 19:23:13 +0900
parents ccb33e5bcf89
children 71b3363c16bf
comparison
equal deleted inserted replaced
559:ccb33e5bcf89 560:1a2f015c42b2
8 .SUFFIXES: .cc .o .xml .xml.h .xml.cc 8 .SUFFIXES: .cc .o .xml .xml.h .xml.cc
9 9
10 .cc.o: 10 .cc.o:
11 $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ 11 $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@
12 12
13 all: ball_bound boss1_action direction 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_XML = xml_file/Ball.xml
18 ball_bound : $(BALL_BOUND_OBJ) $(BALL_BOUND_XML).o 18 ball_bound : $(BALL_BOUND_OBJ) $(BALL_BOUND_XML).o
37 $(CC) -o $@ $< xml_file/direction.xml.o $(LIBS) 37 $(CC) -o $@ $< xml_file/direction.xml.o $(LIBS)
38 direction.cc : xml_file/direction.xml.h 38 direction.cc : xml_file/direction.xml.h
39 xml_file/direction.xml.h : $(DIRECTION_XMLS) 39 xml_file/direction.xml.h : $(DIRECTION_XMLS)
40 perl $(TOOL)/create_sglist.pl -o $@ $(DIRECTION_XMLS) 40 perl $(TOOL)/create_sglist.pl -o $@ $(DIRECTION_XMLS)
41 41
42 GAPLAN_OBJ = gaplant.o gaplant_action.o back_action.o
43 GAPLAN_XML = xml_file/gap_plane_test.xml
44 GAPLAN_XMLS = $(GAPLAN_XML) xml_file/Ball.xml
45 gaplant : $(GAPLAN_OBJ) xml_file/gap_plane_test.xml.o
46 $(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
42 51
43 run: $(TARGET) 52 run: $(TARGET)
44 sudo ./$(TARGET) -width 576 -height 384 -bpp 32 53 sudo ./$(TARGET) -width 576 -height 384 -bpp 32
45 54
46 debug: $(TARGET) 55 debug: $(TARGET)