aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2010-03-30 14:43:09 -0400
committerSteven Rostedt <rostedt@goodmis.org>2010-04-09 11:56:17 -0400
commit7f5dd7b6e1aa1ea12b8d4d802b8aadd501876ba5 (patch)
treecd149883622003c246a44ee781f9f921c036e054 /Makefile
parentf609f9171ef951c18e01f88ce72b9c58995f7996 (diff)
kernelshark: Add dialog helper
Add trace-dialog.c to include a trace_show_help() and trace_dialog() helpers. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 6 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index d13edec..7402ae1 100644
--- a/Makefile
+++ b/Makefile
@@ -213,14 +213,13 @@ $(obj)/%.o: $(src)/%.c
213%.o: $(src)/%.c 213%.o: $(src)/%.c
214 $(Q)$(call check_gui) 214 $(Q)$(call check_gui)
215 215
216TRACE_GUI_OBJS = trace-filter.o trace-compat.o trace-hash.o trace-dialog.o
216TRACE_CMD_OBJS = trace-cmd.o trace-usage.o trace-read.o trace-split.o trace-listen.o 217TRACE_CMD_OBJS = trace-cmd.o trace-usage.o trace-read.o trace-split.o trace-listen.o
217TRACE_VIEW_OBJS = trace-view.o trace-view-store.o trace-filter.o trace-compat.o \ 218TRACE_VIEW_OBJS = trace-view.o trace-view-store.o
218 trace-hash.o 219TRACE_GRAPH_OBJS = trace-graph.o trace-plot.o trace-plot-cpu.o trace-plot-task.o
219TRACE_GRAPH_OBJS = trace-graph.o trace-compat.o trace-hash.o trace-filter.o \ 220TRACE_VIEW_MAIN_OBJS = trace-view-main.o $(TRACE_VIEW_OBJS) $(TRACE_GUI_OBJS)
220 trace-plot.o trace-plot-cpu.o trace-plot-task.o 221TRACE_GRAPH_MAIN_OBJS = trace-graph-main.o $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS)
221TRACE_VIEW_MAIN_OBJS = trace-view-main.o $(TRACE_VIEW_OBJS) 222KERNEL_SHARK_OBJS = $(TRACE_VIEW_OBJS) $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS) kernel-shark.o
222TRACE_GRAPH_MAIN_OBJS = trace-graph-main.o $(TRACE_GRAPH_OBJS)
223KERNEL_SHARK_OBJS = $(TRACE_VIEW_OBJS) $(TRACE_GRAPH_OBJS) kernel-shark.o
224 223
225PEVENT_LIB_OBJS = parse-events.o trace-seq.o parse-filter.o 224PEVENT_LIB_OBJS = parse-events.o trace-seq.o parse-filter.o
226TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o trace-ftrace.o \ 225TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o trace-ftrace.o \