diff 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
line wrap: on
line diff
--- a/Renderer/Engine/Makefile.cell	Thu Sep 30 22:50:35 2010 +0900
+++ b/Renderer/Engine/Makefile.cell	Thu Sep 30 23:54:08 2010 +0900
@@ -1,6 +1,6 @@
 include ./Makefile.def
 
-SRCS_TMP = $(wildcard *.cc) $(wildcard Application/*.cc)
+SRCS_TMP = $(wildcard *.cc) $(wildcard Application/*.cc) $(wildcard ps3fb/*.cc)
 SRCS_EXCLUDE =   # ½ü³°
 SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP))
 OBJS = $(SRCS:.cc=.o)
@@ -13,7 +13,7 @@
 
 LIBS += -lCellManager -lspe2 -lpthread
 
-CFLAGS += `sdl-config --cflags` `xml2-config --cflags`
+CFLAGS += -Drestrict=__restrict__ `sdl-config --cflags` `xml2-config --cflags`
 LIBS   += `sdl-config --libs` -lSDL_image -lGL `xml2-config --libs`
 
 .SUFFIXES: .cc .o