Mercurial > hg > Members > kono > Cerium
view TaskManager/Makefile.def @ 199:eb20274baa7c
add SceneGraph(ieshoot), add SystemSceneGraph(Camera)
author | gongo@gendarme.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Mon, 26 Jan 2009 14:02:45 +0900 |
parents | 72dcf908ec52 |
children | 03ae2929c931 |
line wrap: on
line source
KERN_DIR = kernel KERN_MAIN_SRCS = $(KERN_DIR)/main.cc KERN_MAIN_OBJS = $(KERN_MAIN_SRCS:.cc=.o) KERN_PPE_DIR = $(KERN_DIR)/ppe KERN_PPE_SRCS = $(wildcard $(KERN_PPE_DIR)/*.cc) KERN_PPE_OBJS = $(KERN_PPE_SRCS:.cc=.o) KERN_SCHED_DIR = $(KERN_DIR)/schedule KERN_SCHED_SRCS = $(wildcard $(KERN_SCHED_DIR)/*.cc) KERN_SCHED_OBJS = $(KERN_SCHED_SRCS:.cc=.o) KERN_SYSTASK_DIR = $(KERN_DIR)/sys_task KERN_SYSTASK_SRCS = $(wildcard $(KERN_SYSTASK_DIR)/*.cc) KERN_SYSTASK_OBJS = $(KERN_SYSTASK_SRCS:.cc=.o) IMPL_FIFO_DIR = Fifo IMPL_FIFO_SRCS = $(wildcard $(IMPL_FIFO_DIR)/*.cc) IMPL_FIFO_OBJS = $(IMPL_FIFO_SRCS:.cc=.o) IMPL_CELL_DIR = Cell IMPL_CELL_SRCS = $(IMPL_FIFO_SRCS) $(wildcard $(IMPL_CELL_DIR)/*.cc) IMPL_CELL_OBJS = $(IMPL_CELL_SRCS:.cc=.o) CC = g++ CFLAGS = -O9 -Wall `sdl-config --cflags` -g LIBS = INCLUDE = -I../include/TaskManager