aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2010-03-31 05:32:43 -0400
committerSteven Rostedt <rostedt@goodmis.org>2010-04-09 11:56:17 -0400
commit3f1e092ed414ab2a9f73eafe87f35e868030463c (patch)
treef829402e08e1ba314e5e4c1fb5b6fc38ffc910a2 /Makefile
parent810abc5b84f2855cc328cb709e75046a646be463 (diff)
trace-view: Added saving of filters
Add "Save filters" to "File" menu, where it will allow the user to save the filters to a file in XML format. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7402ae1..cd4db4a 100644
--- a/Makefile
+++ b/Makefile
@@ -96,7 +96,7 @@ plugin_dir_SQ = $(subst ','\'',$(plugin_dir))
96LIBS = -L. -ltracecmd -ldl 96LIBS = -L. -ltracecmd -ldl
97LIB_FILE = libtracecmd.a 97LIB_FILE = libtracecmd.a
98 98
99PACKAGES= gtk+-2.0 99PACKAGES= gtk+-2.0 libxml-2.0
100 100
101ifndef BUILDGUI 101ifndef BUILDGUI
102 BUILDGUI = 0 102 BUILDGUI = 0
@@ -213,13 +213,15 @@ $(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_GUI_OBJS = trace-filter.o trace-compat.o trace-hash.o trace-dialog.o \
217 trace-xml.o
217TRACE_CMD_OBJS = trace-cmd.o trace-usage.o trace-read.o trace-split.o trace-listen.o 218TRACE_CMD_OBJS = trace-cmd.o trace-usage.o trace-read.o trace-split.o trace-listen.o
218TRACE_VIEW_OBJS = trace-view.o trace-view-store.o 219TRACE_VIEW_OBJS = trace-view.o trace-view-store.o
219TRACE_GRAPH_OBJS = trace-graph.o trace-plot.o trace-plot-cpu.o trace-plot-task.o 220TRACE_GRAPH_OBJS = trace-graph.o trace-plot.o trace-plot-cpu.o trace-plot-task.o
220TRACE_VIEW_MAIN_OBJS = trace-view-main.o $(TRACE_VIEW_OBJS) $(TRACE_GUI_OBJS) 221TRACE_VIEW_MAIN_OBJS = trace-view-main.o $(TRACE_VIEW_OBJS) $(TRACE_GUI_OBJS)
221TRACE_GRAPH_MAIN_OBJS = trace-graph-main.o $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS) 222TRACE_GRAPH_MAIN_OBJS = trace-graph-main.o $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS)
222KERNEL_SHARK_OBJS = $(TRACE_VIEW_OBJS) $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS) kernel-shark.o 223KERNEL_SHARK_OBJS = $(TRACE_VIEW_OBJS) $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS) \
224 kernel-shark.o
223 225
224PEVENT_LIB_OBJS = parse-events.o trace-seq.o parse-filter.o 226PEVENT_LIB_OBJS = parse-events.o trace-seq.o parse-filter.o
225TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o trace-ftrace.o \ 227TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o trace-ftrace.o \