comparison example/mainMem/spe/Makefile @ 312:57530cb7f7d1

memMain tester
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 08 Jun 2009 23:19:11 +0900
parents
children
comparison
equal deleted inserted replaced
311:b09784a9cb09 312:57530cb7f7d1
1 include ../Makefile.def
2
3 TARGET = ../spe-main
4
5 SRCS_TMP = $(wildcard *.cc)
6 SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP))
7 OBJS = $(SRCS:.cc=.o)
8
9 CC = spu-g++
10 CFLAGS = -O9 -g -Wall -fno-exceptions -fno-rtti#-DDEBUG
11 INCLUDE = -I../${CERIUM}/include/TaskManager -I. -I..
12 LIBS = -L../${CERIUM}/TaskManager -lspemanager -Wl,--gc-sections
13
14 .SUFFIXES: .cc .o
15
16 .cc.o:
17 $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@
18
19 all: $(TARGET)
20
21 $(TARGET): $(OBJS)
22 $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS)
23
24 clean:
25 rm -f $(TARGET) $(OBJS)
26 rm -f *~ \#*