Mercurial > hg > Game > Cerium
comparison Renderer/Engine/Makefile.macosx @ 632:1e150f1de013 draft before_simple_task
sglist is now obsolete.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 18 Nov 2009 13:38:11 +0900 |
parents | 278db3ca751d |
children | da1cec21f0c9 |
comparison
equal
deleted
inserted
replaced
631:30dd8a3deb4a | 632:1e150f1de013 |
---|---|
24 all: $(TARGET) | 24 all: $(TARGET) |
25 | 25 |
26 $(TARGET) : $(OBJS) $(TASK_OBJS) | 26 $(TARGET) : $(OBJS) $(TASK_OBJS) |
27 $(AR) crus $@ $(OBJS) $(TASK_OBJS) | 27 $(AR) crus $@ $(OBJS) $(TASK_OBJS) |
28 | 28 |
29 # SGList.o: create_sg_list | |
30 # $(CC) $(CFLAGS) $(INCLUDE) -c SGList.cc -o $@ | |
31 | |
32 create_sg_list: | |
33 @if [ ! -f SGList.h ]; then \ | |
34 cd tools/;\ | |
35 ./create_sglist.pl ../xml_file/*.xml;\ | |
36 fi | |
37 | 29 |
38 | 30 |
39 run: $(TARGET) | 31 run: $(TARGET) |
40 sudo ./$(TARGET) -width 576 -height 384 -bpp 32 | 32 sudo ./$(TARGET) -width 576 -height 384 -bpp 32 |
41 | 33 |