Mercurial > hg > Game > Cerium
view example/basic/spe/Makefile @ 256:2c775d229cc6 draft
fix examples
author | tkaito@localhost.localdomain |
---|---|
date | Wed, 03 Jun 2009 16:14:06 +0900 |
parents | 028ffc9c0375 |
children |
line wrap: on
line source
include ../Makefile.def TARGET = ../spe-main SRCS_TMP = $(wildcard *.cc) SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP)) OBJS = $(SRCS:.cc=.o) CC = spu-g++ CFLAGS = -g -Wall -fno-exceptions -fno-rtti #-DDEBUG INCLUDE = -I../${CERIUM}/include/TaskManager -I. -I.. LIBS = -L../${CERIUM}/TaskManager -lspemanager .SUFFIXES: .cc .o .cc.o: $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ all: $(TARGET) $(TARGET): $(OBJS) $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS) clean: rm -f $(TARGET) $(OBJS) rm -f *~ \#*