diff options
| author | Steven Rostedt <srostedt@redhat.com> | 2010-03-31 05:32:43 -0400 |
|---|---|---|
| committer | Steven Rostedt <rostedt@goodmis.org> | 2010-04-09 11:56:17 -0400 |
| commit | 3f1e092ed414ab2a9f73eafe87f35e868030463c (patch) | |
| tree | f829402e08e1ba314e5e4c1fb5b6fc38ffc910a2 /Makefile | |
| parent | 810abc5b84f2855cc328cb709e75046a646be463 (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-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
| @@ -96,7 +96,7 @@ plugin_dir_SQ = $(subst ','\'',$(plugin_dir)) | |||
| 96 | LIBS = -L. -ltracecmd -ldl | 96 | LIBS = -L. -ltracecmd -ldl |
| 97 | LIB_FILE = libtracecmd.a | 97 | LIB_FILE = libtracecmd.a |
| 98 | 98 | ||
| 99 | PACKAGES= gtk+-2.0 | 99 | PACKAGES= gtk+-2.0 libxml-2.0 |
| 100 | 100 | ||
| 101 | ifndef BUILDGUI | 101 | ifndef 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 | ||
| 216 | TRACE_GUI_OBJS = trace-filter.o trace-compat.o trace-hash.o trace-dialog.o | 216 | TRACE_GUI_OBJS = trace-filter.o trace-compat.o trace-hash.o trace-dialog.o \ |
| 217 | trace-xml.o | ||
| 217 | TRACE_CMD_OBJS = trace-cmd.o trace-usage.o trace-read.o trace-split.o trace-listen.o | 218 | TRACE_CMD_OBJS = trace-cmd.o trace-usage.o trace-read.o trace-split.o trace-listen.o |
| 218 | TRACE_VIEW_OBJS = trace-view.o trace-view-store.o | 219 | TRACE_VIEW_OBJS = trace-view.o trace-view-store.o |
| 219 | TRACE_GRAPH_OBJS = trace-graph.o trace-plot.o trace-plot-cpu.o trace-plot-task.o | 220 | TRACE_GRAPH_OBJS = trace-graph.o trace-plot.o trace-plot-cpu.o trace-plot-task.o |
| 220 | TRACE_VIEW_MAIN_OBJS = trace-view-main.o $(TRACE_VIEW_OBJS) $(TRACE_GUI_OBJS) | 221 | TRACE_VIEW_MAIN_OBJS = trace-view-main.o $(TRACE_VIEW_OBJS) $(TRACE_GUI_OBJS) |
| 221 | TRACE_GRAPH_MAIN_OBJS = trace-graph-main.o $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS) | 222 | TRACE_GRAPH_MAIN_OBJS = trace-graph-main.o $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS) |
| 222 | KERNEL_SHARK_OBJS = $(TRACE_VIEW_OBJS) $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS) kernel-shark.o | 223 | KERNEL_SHARK_OBJS = $(TRACE_VIEW_OBJS) $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS) \ |
| 224 | kernel-shark.o | ||
| 223 | 225 | ||
| 224 | PEVENT_LIB_OBJS = parse-events.o trace-seq.o parse-filter.o | 226 | PEVENT_LIB_OBJS = parse-events.o trace-seq.o parse-filter.o |
| 225 | TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o trace-ftrace.o \ | 227 | TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o trace-ftrace.o \ |
