comparison Renderer/Engine/Makefile.cell @ 981:a193a851b5e3

add double buffering frame device
author root@henri.cr.ie.u-ryukyu.ac.jp
date Thu, 30 Sep 2010 23:54:08 +0900
parents 9df0112f7ccf
children df5185513c2d
comparison
equal deleted inserted replaced
980:4ce73df9ac61 981:a193a851b5e3
1 include ./Makefile.def 1 include ./Makefile.def
2 2
3 SRCS_TMP = $(wildcard *.cc) $(wildcard Application/*.cc) 3 SRCS_TMP = $(wildcard *.cc) $(wildcard Application/*.cc) $(wildcard ps3fb/*.cc)
4 SRCS_EXCLUDE = # ½ü³° 4 SRCS_EXCLUDE = # ½ü³°
5 SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP)) 5 SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP))
6 OBJS = $(SRCS:.cc=.o) 6 OBJS = $(SRCS:.cc=.o)
7 7
8 TASK_DIR = task 8 TASK_DIR = task
11 TASK_SRCS = $(filter-out $(TASK_SRCS_EXCLUDE),$(TASK_SRCS_TMP)) 11 TASK_SRCS = $(filter-out $(TASK_SRCS_EXCLUDE),$(TASK_SRCS_TMP))
12 TASK_OBJS = $(TASK_SRCS:.cc=.o) 12 TASK_OBJS = $(TASK_SRCS:.cc=.o)
13 13
14 LIBS += -lCellManager -lspe2 -lpthread 14 LIBS += -lCellManager -lspe2 -lpthread
15 15
16 CFLAGS += `sdl-config --cflags` `xml2-config --cflags` 16 CFLAGS += -Drestrict=__restrict__ `sdl-config --cflags` `xml2-config --cflags`
17 LIBS += `sdl-config --libs` -lSDL_image -lGL `xml2-config --libs` 17 LIBS += `sdl-config --libs` -lSDL_image -lGL `xml2-config --libs`
18 18
19 .SUFFIXES: .cc .o 19 .SUFFIXES: .cc .o
20 20
21 .cc.o: 21 .cc.o: