Mercurial > hg > Game > Cerium
view TaskManager/Test/test_render/Makefile.ps3 @ 269:abf96b4caee5 draft
merge
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 04 Jun 2009 00:01:11 +0900 |
parents | 7c1f0cd70d7a |
children |
line wrap: on
line source
include ./Makefile.def SRCS_TMP = $(wildcard *.cpp) SRCS_EXCLUDE = # ½ü³° SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP)) OBJS = $(SRCS:.cpp=.o) TASK_DIR = task TASK_SRCS_TMP = $(wildcard $(TASK_DIR)/*.cpp) TASK_SRCS_EXCLUDE = span_pack_draw.cpp TASK_SRCS = $(filter-out $(TASK_SRCS_EXCLUDE),$(TASK_SRCS_TMP)) TASK_OBJS = $(TASK_SRCS:.cpp=.o) LIBS += -lCellManager -lspe2 -lpthread CFLAGS += `sdl-config --cflags` `xml2-config --cflags` LIBS += `sdl-config --libs` -lSDL_image -lGL `xml2-config --libs` .SUFFIXES: .cpp .o .cpp.o: $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ default: all all: $(TARGET) speobject $(TARGET): SGList.o $(OBJS) $(TASK_OBJS) $(CC) -o $@ SGList.o $(OBJS) $(TASK_OBJS) $(LIBS) SGList.o: create_sg_list $(CC) $(CFLAGS) $(INCLUDE) -c SGList.cpp -o $@ create_sg_list: @if [ ! -f SGList.h ]; then \ cd tools/;\ ./create_sglist.pl ../xml_file/*.xml;\ fi speobject: cd spe; $(MAKE) run: $(TARGET) sudo ./$(TARGET) -width 576 -height 384 -bpp 32 debug: $(TARGET) sudo ppu-gdb ./$(TARGET) depend: $(RM) depend.inc $(CC) -MM -MG $(INCLUDE) $(CFLAGS) $(SRCS) $(TASK_SRCS) > depend.inc clean: rm -f $(TARGET) $(OBJS) $(TASK_OBJS) rm -f *~ \#* rm -f SGList.h SGList.cpp cd task; rm -f *~ \#* cd spe; $(MAKE) clean