view TaskManager/Makefile.def @ 33:1c7c3d73ffc7

*** empty log message ***
author gongo
date Tue, 12 Feb 2008 15:41:38 +0900
parents 6a77b5e755ab
children babf9a330418
line wrap: on
line source

#TARGET = ppe-main
TARGET = libmanager.a

KERN_DIR = kernel

KERN_PPE_DIR  = $(KERN_DIR)/ppe
KERN_PPE_SRCS = $(wildcard $(KERN_PPE_DIR)/*.cpp)
KERN_PPE_OBJS = $(KERN_PPE_SRCS:.cpp=.o)

KERN_SPE_DIR  = $(KERN_DIR)/spe
KERN_SPE_SRCS = $(wildcard $(KERN_SPE_DIR)/*.cpp)
KERN_SPE_OBJS = $(KERN_SPE_SRCS:.cpp=.o)

IMPL_FIFO_DIR  = Fifo
IMPL_FIFO_SRCS = $(wildcard $(IMPL_FIFO_DIR)/*.cpp)
IMPL_FIFO_OBJS = $(IMPL_FIFO_SRCS:.cpp=.o)

IMPL_CELL_DIR  = Cell
IMPL_CELL_SRCS = $(wildcard $(IMPL_CELL_DIR)/*.cpp)
IMPL_CELL_OBJS = $(IMPL_CELL_SRCS:.cpp=.o)

CC     = g++ 
CFLAGS = -Wall -g -D_PPE_DEBUG# -DDEBUG
LIBS   = 

INCLUDE = -I../include/TaskManager