Mercurial > hg > Members > kono > Cerium
view Renderer/Engine/Makefile.linux @ 630:71863d91959b
modify Makefile for linux
author | kent <kent@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 18 Nov 2009 12:03:28 +0900 |
parents | 735f76483bb2 |
children | 9df0112f7ccf |
line wrap: on
line source
include ./Makefile.def SRCS_TMP = $(wildcard *.cc) $(wildcard Application/*.cc) SRCS_EXCLUDE = # ½ü³° SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP)) OBJS = $(SRCS:.cc=.o) TASK_DIR = task TASK_SRCS_TMP = $(wildcard $(TASK_DIR)/*.cc) TASK_SRCS_EXCLUDE = span_pack_draw.cc TASK_SRCS = $(filter-out $(TASK_SRCS_EXCLUDE),$(TASK_SRCS_TMP)) TASK_OBJS = $(TASK_SRCS:.cc=.o) LIBS += -lFifoManager CFLAGS += `sdl-config --cflags` `xml2-config --cflags` LIBS += `sdl-config --libs` -lSDL_image -lGL `xml2-config --libs` .SUFFIXES: .cc .o .cc.o: $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ all: $(TARGET) $(TARGET): $(OBJS) $(TASK_OBJS) $(AR) crus $@ $(OBJS) $(TASK_OBJS) #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 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