diff TaskManager/Test/simple_render/Makefile @ 76:5a1a5f4c28fd

*** empty log message ***
author gongo
date Mon, 18 Feb 2008 11:40:11 +0900
parents 811ffebd8deb
children 83b57e03d3ef
line wrap: on
line diff
--- a/TaskManager/Test/simple_render/Makefile	Mon Feb 18 04:47:28 2008 +0900
+++ b/TaskManager/Test/simple_render/Makefile	Mon Feb 18 11:40:11 2008 +0900
@@ -8,15 +8,16 @@
 TASK_OBJS = $(TASK_SRCS:.cpp=.o)
 
 CC      = g++
-CFLAGS  = -g -Wall# -DDEBUG
+CFLAGS  = -O9 -g -Wall# -DDEBUG
 INCLUDE = -I../../../include/TaskManager -I.
 
 EXTRA_CFLAGS = `sdl-config --cflags` `xml2-config --cflags`\
 
+#EXTRA_LIBS = -lCellManager -lspe2 -lpthread
+EXTRA_LIBS = -lFifoManager
+
 LIBS = `sdl-config --libs` -lSDL_image -lGL \
-       `xml2-config --libs`\
-       -L../../ -lmanager -lspe2 -lpthread
-
+       `xml2-config --libs` -L../.. $(EXTRA_LIBS)
 .SUFFIXES: .cpp .o
 
 .cpp.o: