annotate example/MemList/Makefile.macosx @ 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 0eed1fa290c1
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)
373
eab18aa0c7f6 MemList not working
kazz@kazzone.cr.ie.u-ryukyu.ac.jp
parents: 369
diff changeset
4 SRCS_EXCLUDE =
364
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
5 SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP))
369
03ae2929c931 change TaskManager.cc
aaa
parents: 368
diff changeset
6 OBJS = $(SRCS:.cc=.o)
364
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)
373
eab18aa0c7f6 MemList not working
kazz@kazzone.cr.ie.u-ryukyu.ac.jp
parents: 369
diff changeset
10 TASK_SRCS_EXCLUDE =
364
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 += -lFifoManager `sdl-config --libs`
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
373
eab18aa0c7f6 MemList not working
kazz@kazzone.cr.ie.u-ryukyu.ac.jp
parents: 369
diff changeset
21 all: $(TARGET)
368
126f90e8582c change TaskManager
aaa
parents: 364
diff changeset
22
373
eab18aa0c7f6 MemList not working
kazz@kazzone.cr.ie.u-ryukyu.ac.jp
parents: 369
diff changeset
23 #MemList.o: ${CERIUM}/kernel/memory/MemList.cc
eab18aa0c7f6 MemList not working
kazz@kazzone.cr.ie.u-ryukyu.ac.jp
parents: 369
diff changeset
24
364
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
25
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
26 $(TARGET): $(OBJS) $(TASK_OBJS)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
27 $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
28
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
29 link:
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
30 $(CC) -o $(TARGET) $(OBJS) $(TASK_OBJS) $(LIBS)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
31
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
32 debug: $(TARGET)
373
eab18aa0c7f6 MemList not working
kazz@kazzone.cr.ie.u-ryukyu.ac.jp
parents: 369
diff changeset
33 sudo gdb ./$(TARGET)
364
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
34
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
35 clean:
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
36 rm -f $(TARGET) $(OBJS) $(TASK_OBJS)
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
37 rm -f *~ \#*