annotate example/Pipeline/Makefile.linux @ 963:62b72c6199f3 draft

SgChange
author tkaito
date Thu, 05 Aug 2010 22:47:38 +0900
parents
children a0ea7d9b6faf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
963
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
1 include ./Makefile.def
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
2
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
3 SRCS_TMP = $(wildcard *.cc)
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
4 SRCS_EXCLUDE = # 除外するファイルを書く
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
5 SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP))
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
6 OBJS = $(SRCS:.cc=.o)
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
7
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
8 TASK_DIR = ppe
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
9 TASK_SRCS_TMP = $(wildcard $(TASK_DIR)/*.cc)
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
10 TASK_SRCS_EXCLUDE =
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
11 TASK_SRCS = $(filter-out $(TASK_DIR)/$(TASK_SRCS_EXCLUDE),$(TASK_SRCS_TMP))
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
12 TASK_OBJS = $(TASK_SRCS:.cc=.o)
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
13
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
14 LIBS += -lFifoManager
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
15
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
16 .SUFFIXES: .cc .o
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
17
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
18 .cc.o:
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
19 $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
20
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
21 all: $(TARGET)
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
22
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
23 $(TARGET): $(OBJS) $(TASK_OBJS)
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
24 $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS)
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
25
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
26 link:
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
27 $(CC) -o $(TARGET) $(OBJS) $(TASK_OBJS) $(LIBS)
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
28
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
29 debug: $(TARGET)
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
30 sudo gdb ./$(TARGET)
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
31
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
32 clean:
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
33 rm -f $(TARGET) $(OBJS) $(TASK_OBJS)
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
34 rm -f *~ \#*
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
35 rm -f ppe/*~ ppe/\#*
62b72c6199f3 SgChange
tkaito
parents:
diff changeset
36 rm -f spe/*~ spe/\#*