view TaskManager/Test/simple_render/test/LoadTexture/spe/Makefile @ 97:21958f9a31c7

This code use readbuf = 49152. normal is 16384. We might fix.
author akira
date Thu, 28 Feb 2008 20:10:35 +0900
parents 32be65e25785
children
line wrap: on
line source

TARGET = ../spe-main

SRCS = $(wildcard *.cpp)
OBJS = $(SRCS:.cpp=.o)

CC      = spu-g++
CFLAGS  = -g -O9 -DDEBUG
INCLUDE = -I../../../../../../include/TaskManager -I. -I..
LIBS    = -L../../../../.. -lspemanager# -lm

.SUFFIXES: .cpp .o

.cpp.o:
	$(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@

all: $(TARGET)

$(TARGET): $(OBJS)
	$(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS)

clean:
	rm -f $(TARGET) $(OBJS)
	rm -f *~ \#*