aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/Makefile
diff options
context:
space:
mode:
authorMasami Hiramatsu <mhiramat@redhat.com>2009-11-30 19:19:58 -0500
committerIngo Molnar <mingo@elte.hu>2009-12-01 02:20:01 -0500
commit50656eec82684d03add0f4f4b4875a20bd8f9755 (patch)
tree4acc107d75f7fadf0511c755ffdbee3e9f0f8caa /tools/perf/Makefile
parent934b1f5fd0c9a2ddde5a4487695c126243d9a42b (diff)
perf probe: Move probe event utility functions to probe-event.c
Split probe event (kprobe-events and perf probe events) utility functions from builtin-probe.c to probe-event.c. Signed-off-by: Masami Hiramatsu <mhiramat@redhat.com> Cc: systemtap <systemtap@sources.redhat.com> Cc: DLE <dle-develop@lists.sourceforge.net> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Jim Keniston <jkenisto@us.ibm.com> Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com> Cc: Christoph Hellwig <hch@infradead.org> Cc: Frank Ch. Eigler <fche@redhat.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jason Baron <jbaron@redhat.com> Cc: K.Prasad <prasad@linux.vnet.ibm.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Srikar Dronamraju <srikar@linux.vnet.ibm.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> LKML-Reference: <20091201001958.10235.90243.stgit@harusame> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/Makefile')
-rw-r--r--tools/perf/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index 76e4b04d4080..f8537cf812c9 100644
--- a/tools/perf/Makefile
+++ b/tools/perf/Makefile
@@ -370,6 +370,7 @@ LIB_H += util/hist.h
370LIB_H += util/thread.h 370LIB_H += util/thread.h
371LIB_H += util/data_map.h 371LIB_H += util/data_map.h
372LIB_H += util/probe-finder.h 372LIB_H += util/probe-finder.h
373LIB_H += util/probe-event.h
373 374
374LIB_OBJS += util/abspath.o 375LIB_OBJS += util/abspath.o
375LIB_OBJS += util/alias.o 376LIB_OBJS += util/alias.o
@@ -412,6 +413,7 @@ LIB_OBJS += util/svghelper.o
412LIB_OBJS += util/sort.o 413LIB_OBJS += util/sort.o
413LIB_OBJS += util/hist.o 414LIB_OBJS += util/hist.o
414LIB_OBJS += util/data_map.o 415LIB_OBJS += util/data_map.o
416LIB_OBJS += util/probe-event.o
415 417
416BUILTIN_OBJS += builtin-annotate.o 418BUILTIN_OBJS += builtin-annotate.o
417 419