Mercurial > hg > Game > Cerium
annotate TaskManager/Makefile.def @ 188:fe854a6ee9e2 draft
メモりリーク箇所発見:TaskManager/Test/test_render/ChangeLog参照
author | gongo@localhost.localdomain |
---|---|
date | Thu, 08 Jan 2009 15:34:19 +0900 |
parents | 06cdf8baa989 |
children | 6694da357750 |
rev | line source |
---|---|
2 | 1 KERN_DIR = kernel |
2 | |
109 | 3 KERN_MAIN_SRCS = $(KERN_DIR)/main.cc |
4 KERN_MAIN_OBJS = $(KERN_MAIN_SRCS:.cc=.o) | |
5 | |
2 | 6 KERN_PPE_DIR = $(KERN_DIR)/ppe |
109 | 7 KERN_PPE_SRCS = $(wildcard $(KERN_PPE_DIR)/*.cc) |
8 KERN_PPE_OBJS = $(KERN_PPE_SRCS:.cc=.o) | |
2 | 9 |
42 | 10 KERN_SCHED_DIR = $(KERN_DIR)/schedule |
109 | 11 KERN_SCHED_SRCS = $(wildcard $(KERN_SCHED_DIR)/*.cc) |
12 KERN_SCHED_OBJS = $(KERN_SCHED_SRCS:.cc=.o) | |
42 | 13 |
109 | 14 KERN_SYSTASK_DIR = $(KERN_DIR)/sys_task |
15 KERN_SYSTASK_SRCS = $(wildcard $(KERN_SYSTASK_DIR)/*.cc) | |
16 KERN_SYSTASK_OBJS = $(KERN_SYSTASK_SRCS:.cc=.o) | |
17 | |
2 | 18 |
19 IMPL_FIFO_DIR = Fifo | |
109 | 20 IMPL_FIFO_SRCS = $(wildcard $(IMPL_FIFO_DIR)/*.cc) |
21 IMPL_FIFO_OBJS = $(IMPL_FIFO_SRCS:.cc=.o) | |
2 | 22 |
23 IMPL_CELL_DIR = Cell | |
109 | 24 IMPL_CELL_SRCS = $(IMPL_FIFO_SRCS) $(wildcard $(IMPL_CELL_DIR)/*.cc) |
25 IMPL_CELL_OBJS = $(IMPL_CELL_SRCS:.cc=.o) | |
2 | 26 |
109 | 27 CC = g++ |
188
fe854a6ee9e2
メモりリーク箇所発見:TaskManager/Test/test_render/ChangeLog参照
gongo@localhost.localdomain
parents:
186
diff
changeset
|
28 CFLAGS = -O0 -Wall `sdl-config --cflags` -g |
2 | 29 LIBS = |
30 | |
3 | 31 INCLUDE = -I../include/TaskManager |