aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Hart <dvhart@linux.intel.com>2011-01-04 15:43:39 -0500
committerSteven Rostedt <rostedt@goodmis.org>2011-01-04 20:25:49 -0500
commit150b79d10d0070ffee4bcd3da0206b7750ae4132 (patch)
treea5624d05aaacd82e7fba9653bb19b59de881531d
parent6bfc042cbfa9fe19ffe014531cfe135bc3c0da55 (diff)
trace-cmd: Move trace-usage to lib objects
Make the usage function available to shared objects, such as the python ctracecmd.so module built by the SWIG mechanism. Signed-off-by: Darren Hart <dvhart@linux.intel.com> LKML-Reference: <1294173820-7043-3-git-send-email-dvhart@linux.intel.com> CC: Tom Zanussi <tom.zanussi@intel.com> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 41f0d43..74f2c44 100644
--- a/Makefile
+++ b/Makefile
@@ -261,8 +261,7 @@ $(obj)/%.o: $(src)/%.c
261 261
262TRACE_GUI_OBJS = trace-filter.o trace-compat.o trace-hash.o trace-dialog.o \ 262TRACE_GUI_OBJS = trace-filter.o trace-compat.o trace-hash.o trace-dialog.o \
263 trace-xml.o 263 trace-xml.o
264TRACE_CMD_OBJS = trace-cmd.o trace-usage.o trace-read.o trace-split.o trace-listen.o \ 264TRACE_CMD_OBJS = trace-cmd.o trace-read.o trace-split.o trace-listen.o trace-stack.o
265 trace-stack.o
266TRACE_VIEW_OBJS = trace-view.o trace-view-store.o 265TRACE_VIEW_OBJS = trace-view.o trace-view-store.o
267TRACE_GRAPH_OBJS = trace-graph.o trace-plot.o trace-plot-cpu.o trace-plot-task.o 266TRACE_GRAPH_OBJS = trace-graph.o trace-plot.o trace-plot-cpu.o trace-plot-task.o
268TRACE_VIEW_MAIN_OBJS = trace-view-main.o $(TRACE_VIEW_OBJS) $(TRACE_GUI_OBJS) 267TRACE_VIEW_MAIN_OBJS = trace-view-main.o $(TRACE_VIEW_OBJS) $(TRACE_GUI_OBJS)
@@ -272,7 +271,7 @@ KERNEL_SHARK_OBJS = $(TRACE_VIEW_OBJS) $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS) \
272 271
273PEVENT_LIB_OBJS = parse-events.o trace-seq.o parse-filter.o parse-utils.o 272PEVENT_LIB_OBJS = parse-events.o trace-seq.o parse-filter.o parse-utils.o
274TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o trace-ftrace.o \ 273TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o trace-ftrace.o \
275 trace-output.o trace-record.o trace-restore.o 274 trace-output.o trace-record.o trace-restore.o trace-usage.o
276 275
277PLUGIN_OBJS = plugin_hrtimer.o plugin_kmem.o plugin_sched_switch.o \ 276PLUGIN_OBJS = plugin_hrtimer.o plugin_kmem.o plugin_sched_switch.o \
278 plugin_mac80211.o plugin_jbd2.o plugin_function.o plugin_kvm.o 277 plugin_mac80211.o plugin_jbd2.o plugin_function.o plugin_kvm.o