Mercurial > hg > Game > Cerium
view Renderer/Engine/spe/Makefile @ 682:b215da88416d draft
debug , aligned light_xyz
author | hiroki@localhost.localdomain |
---|---|
date | Tue, 08 Dec 2009 19:44:20 +0900 |
parents | 136941975c47 |
children | 32160f3c0367 |
line wrap: on
line source
include ../Makefile.def TARGET = ../spe-main TOP = ../$(CERIUM) SRCS_TMP = $(wildcard *.cc) SRCS_EXCLUDE = CreatePolygon.cc SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP)) OBJS = $(SRCS:.cc=.o) CC = spu-g++ CFLAGS = -Wall -g -fno-exceptions -fno-rtti #-DDEBUG INCLUDE = -I$(TOP)/include/TaskManager -I. -I.. LIBS = -L$(TOP)/TaskManager -lspemanager .SUFFIXES: .cc .o .cc.o: $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ all: $(TARGET) $(TARGET): $(OBJS) $(CC) $(OPT) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS) clean: rm -f $(TARGET) $(OBJS) rm -f *~ \#*