view TaskManager/Test/simple_render/spe/Makefile @ 74:5da437ae84db

*** empty log message ***
author gongo
date Mon, 18 Feb 2008 04:05:56 +0900
parents 178459e03f5c
children 5a1a5f4c28fd
line wrap: on
line source

TARGET = ../spe-main

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

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

.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 *~ \#*