view example/HelloWorld/spe/Makefile @ 201:9484318b3e8f draft

add SceneGraphIterator
author gongo@gendarme.cr.ie.u-ryukyu.ac.jp
date Mon, 26 Jan 2009 16:46:59 +0900
parents 1f7c46e52ab9
children 0c9c9906d777
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  = -O9 -g -Wall -fno-exceptions -fno-rtti#-DDEBUG
INCLUDE = -I${CERIUM}/include/TaskManager -I. -I..
LIBS = -L${CERIUM}/TaskManager -lspemanager  -Wl,--gc-sections 

.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 *~ \#*