Mercurial > hg > Game > Cerium
view old/simple_render/test/LoadTexture/spe/Makefile @ 638:250c7353ddaf draft
hmmmm
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 19 Nov 2009 18:18:20 +0900 |
parents | 3bc98f6d31ff |
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 *~ \#*