diff options
author | Steven Rostedt <srostedt@redhat.com> | 2010-01-04 15:13:04 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2010-01-04 15:13:04 -0500 |
commit | 39baeecb4afb317f8a20187f4edb280f4448e4df (patch) | |
tree | 6032f09dadc800715275eb8d156b1b1225ff7cfd /Makefile | |
parent | f4541daee0c39a10bb886d38cf9f742fa7acc2a3 (diff) |
kernel-shark: Enabled filtering of tasks for list and graph
The list and graph can now filter tasks.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -28,7 +28,7 @@ all: $(TARGETS) | |||
28 | 28 | ||
29 | LIB_FILE = libtracecmd.a | 29 | LIB_FILE = libtracecmd.a |
30 | 30 | ||
31 | HEADERS = parse-events.h trace-cmd.h trace-local.h | 31 | HEADERS = parse-events.h trace-cmd.h trace-local.h trace-hash.h |
32 | 32 | ||
33 | trace-read.o:: $(HEADERS) | 33 | trace-read.o:: $(HEADERS) |
34 | trace-cmd.o:: $(HEADERS) $(LIB_FILE) | 34 | trace-cmd.o:: $(HEADERS) $(LIB_FILE) |
@@ -43,7 +43,8 @@ trace-graph.o:: $(HEADERS) trace-graph.h | |||
43 | trace-graph-main.o:: $(HEADERS) trace-graph.h | 43 | trace-graph-main.o:: $(HEADERS) trace-graph.h |
44 | kernel-shark.o:: $(HEADERS) kernel-shark.h | 44 | kernel-shark.o:: $(HEADERS) kernel-shark.h |
45 | 45 | ||
46 | TRACE_VIEW_OBJS = trace-view.o trace-view-store.o trace-filter.o trace-compat.o | 46 | TRACE_VIEW_OBJS = trace-view.o trace-view-store.o trace-filter.o trace-compat.o \ |
47 | trace-hash.o | ||
47 | 48 | ||
48 | trace-cmd:: trace-cmd.o trace-read.o | 49 | trace-cmd:: trace-cmd.o trace-read.o |
49 | $(CC) $^ -rdynamic -o $@ $(LIBS) | 50 | $(CC) $^ -rdynamic -o $@ $(LIBS) |