Mercurial > hg > Game > Cerium
comparison example/word_count/spe/Makefile @ 393:cb06748ba6cf draft
add word_count
author | e065725@localhost.localdomain |
---|---|
date | Tue, 15 Sep 2009 16:30:46 +0900 |
parents | |
children | 77d9e3bc25b2 |
comparison
equal
deleted
inserted
replaced
392:96200cf9a0d0 | 393:cb06748ba6cf |
---|---|
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 = -g -Wall -fno-exceptions -fno-rtti #-DDEBUG | |
11 INCLUDE = -I../${CERIUM}/include/TaskManager -I. -I.. | |
12 LIBS = -L../${CERIUM}/TaskManager -lspemanager | |
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 *~ \#* |