diff options
author | John Kacur <jkacur@redhat.com> | 2009-09-28 09:32:55 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-09-30 07:57:56 -0400 |
commit | 3d1d07ecd2009f65cb2091563fa21f9600c36774 (patch) | |
tree | a1ef97a8264fc880ee8a9406a9be9070d0d12176 /tools/perf/Makefile | |
parent | dd68ada2d417e57b848822a1407b5317a54136c5 (diff) |
perf tools: Put common histogram functions in their own file
Move histogram related functions into their own files (hist.c and
hist.h) and make use of them in builtin-annotate.c and
builtin-report.c.
Signed-off-by: John Kacur <jkacur@redhat.com>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <alpine.LFD.2.00.0909281531180.8316@localhost.localdomain>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/Makefile')
-rw-r--r-- | tools/perf/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile index 0a9e5aede318..3a99a9fda645 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
@@ -340,6 +340,7 @@ LIB_H += util/module.h | |||
340 | LIB_H += util/color.h | 340 | LIB_H += util/color.h |
341 | LIB_H += util/values.h | 341 | LIB_H += util/values.h |
342 | LIB_H += util/sort.h | 342 | LIB_H += util/sort.h |
343 | LIB_H += util/hist.h | ||
343 | 344 | ||
344 | LIB_OBJS += util/abspath.o | 345 | LIB_OBJS += util/abspath.o |
345 | LIB_OBJS += util/alias.o | 346 | LIB_OBJS += util/alias.o |
@@ -376,6 +377,7 @@ LIB_OBJS += util/trace-event-read.o | |||
376 | LIB_OBJS += util/trace-event-info.o | 377 | LIB_OBJS += util/trace-event-info.o |
377 | LIB_OBJS += util/svghelper.o | 378 | LIB_OBJS += util/svghelper.o |
378 | LIB_OBJS += util/sort.o | 379 | LIB_OBJS += util/sort.o |
380 | LIB_OBJS += util/hist.o | ||
379 | 381 | ||
380 | BUILTIN_OBJS += builtin-annotate.o | 382 | BUILTIN_OBJS += builtin-annotate.o |
381 | BUILTIN_OBJS += builtin-help.o | 383 | BUILTIN_OBJS += builtin-help.o |