comparison TaskManager/Makefile.def @ 2:70e9baa00f51

*** empty log message ***
author gongo
date Tue, 05 Feb 2008 20:22:50 +0900
parents
children 2356238ebea7
comparison
equal deleted inserted replaced
1:07d09b93cd3d 2:70e9baa00f51
1 #TARGET = ppe-main
2 TARGET = libmanager.a
3
4 KERN_DIR = kernel
5
6 KERN_PPE_DIR = $(KERN_DIR)/ppe
7 KERN_PPE_SRCS = $(wildcard $(KERN_PPE_DIR)/*.cpp)
8 KERN_PPE_OBJS = $(KERN_PPE_SRCS:.cpp=.o)
9
10 KERN_SPE_DIR = $(KERN_DIR)/spe
11 KERN_SPE_SRCS = $(wildcard $(KERN_SPE_DIR)/*.cpp)
12 KERN_SPE_OBJS = $(KERN_SPE_SRCS:.cpp=.o)
13
14 IMPL_FIFO_DIR = Fifo
15 IMPL_FIFO_SRCS = $(wildcard $(IMPL_FIFO_DIR)/*.cpp)
16 IMPL_FIFO_OBJS = $(IMPL_FIFO_SRCS:.cpp=.o)
17
18 IMPL_CELL_DIR = Cell
19 IMPL_CELL_SRCS = $(wildcard $(IMPL_CELL_DIR)/*.cpp)
20 IMPL_CELL_OBJS = $(IMPL_CELL_SRCS:.cpp=.o)
21
22 CC = g++
23 CFLAGS = -Wall -O2 -g
24 LIBS =
25
26 INCLUDE = -I../include