comparison Renderer/Test/Makefile.macosx @ 563:b21a013051a2

all exmple on Mac OS X
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 22 Oct 2009 23:05:16 +0900
parents a5fda4e51498
children 2e1b6c5e4f8f
comparison
equal deleted inserted replaced
562:a5fda4e51498 563:b21a013051a2
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 gaplant 13 all: ball_bound boss1_action direction gaplant ieshoot node panel universe untitled vacuum
14 14
15 15
16 BALL_BOUND_OBJ = ball_bound.o 16 BALL_BOUND_OBJ = ball_bound.o
17 ball_bound : $(BALL_BOUND_OBJ) 17 ball_bound : $(BALL_BOUND_OBJ)
18 $(CC) -o $@ $? $(LIBS) 18 $(CC) -o $@ $? $(LIBS)
27 27
28 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
29 gaplant : $(GAPLAN_OBJ) 29 gaplant : $(GAPLAN_OBJ)
30 $(CC) -o $@ $? $(LIBS) 30 $(CC) -o $@ $? $(LIBS)
31 31
32 IESHOOT_OBJ = ieshoot.o
33 ieshoot : $(IESHOOT_OBJ)
34 $(CC) -o $@ $? $(LIBS)
35
36 NODE_OBJ = node.o
37 node : $(NODE_OBJ)
38 $(CC) -o $@ $? $(LIBS)
39
40 PANEL_OBJ = panel.o
41 panel : $(PANEL_OBJ)
42 $(CC) -o $@ $? $(LIBS)
43
44 UNIV_OBJ = universe.o
45 universe : $(UNIV_OBJ)
46 $(CC) -o $@ $? $(LIBS)
47
48 UNTITLED_OBJ = untitled.o
49 untitled : $(UNTITLED_OBJ)
50 $(CC) -o $@ $? $(LIBS)
51
52 VACUUM_OBJ = vacuum.o cube.o game_over.o title.o
53 vacuum : $(VACUUM_OBJ)
54 $(CC) -o $@ $? $(LIBS)
32 55
33 run: $(TARGET) 56 run: $(TARGET)
34 sudo ./$(TARGET) -width 576 -height 384 -bpp 32 57 sudo ./$(TARGET) -width 576 -height 384 -bpp 32
35 58
36 debug: $(TARGET) 59 debug: $(TARGET)