annotate example/MemList/Makefile.cell @ 1048:40cde8c1a6cd default tip

add ScaleXY (not for allExecute...)
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 08 Dec 2010 06:22:15 +0900
parents 44c0bce54dcf
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
364
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
1 include ./Makefile.def
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
2
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
3 SRCS_TMP = $(wildcard *.cc)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
4 SRCS_EXCLUDE = # 除外するファイルを書く
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
5 SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP))
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
6 OBJS = $(SRCS:.cc=.o)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
7
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
8 TASK_DIR = ppe
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
9 TASK_SRCS_TMP = $(wildcard $(TASK_DIR)/*.cc)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
10 TASK_SRCS_EXCLUDE =
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
11 TASK_SRCS = $(filter-out $(TASK_DIR)/$(TASK_SRCS_EXCLUDE),$(TASK_SRCS_TMP))
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
12 TASK_OBJS = $(TASK_SRCS:.cc=.o)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
13
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
14 LIBS += -lCellManager -lspe2 -lpthread -Wl,--gc-sections
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
15
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
16 .SUFFIXES: .cc .o
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
17
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
18 .cc.o:
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
19 $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
20
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
21 all: $(TARGET) speobject
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
22
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
23 $(TARGET): $(OBJS) $(TASK_OBJS)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
24 $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
25
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
26 speobject:
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
27 cd spe; $(MAKE)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
28
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
29 run:
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
30 ./$(TARGET) -cpu 6
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
31
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
32 link:
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
33 $(CC) -o $(TARGET) $(OBJS) $(TASK_OBJS) $(LIBS)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
34
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
35 debug: $(TARGET)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
36 sudo ppu-gdb ./$(TARGET)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
37
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
38 clean:
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
39 rm -f $(TARGET) $(OBJS) $(TASK_OBJS)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
40 rm -f *~ \#*
467
44c0bce54dcf fix all examples. test_render is not working now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 373
diff changeset
41 cd spe; $(MAKE) clean