diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-05-18 11:45:42 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-05-26 07:52:53 -0400 |
commit | 8fa66bdcc81dd4fc2c91228074d0a4698120c5a2 (patch) | |
tree | ae356069f38689f8656599e6ee1372268339de49 /Documentation/perf_counter/Makefile | |
parent | b456bae0ff4f3cf91639dd32b2bfc49b1c30b4b0 (diff) |
perf_counter: First part of 'perf report' conversion to C + elfutils
Integrate perf-report into 'perf', as builtin-report.c.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'Documentation/perf_counter/Makefile')
-rw-r--r-- | Documentation/perf_counter/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Documentation/perf_counter/Makefile b/Documentation/perf_counter/Makefile index 45daa72facdc..49c601e10692 100644 --- a/Documentation/perf_counter/Makefile +++ b/Documentation/perf_counter/Makefile | |||
@@ -228,7 +228,6 @@ COMPAT_CFLAGS = | |||
228 | COMPAT_OBJS = | 228 | COMPAT_OBJS = |
229 | LIB_H = | 229 | LIB_H = |
230 | LIB_OBJS = | 230 | LIB_OBJS = |
231 | PROGRAMS = perf-report | ||
232 | SCRIPT_PERL = | 231 | SCRIPT_PERL = |
233 | SCRIPT_SH = | 232 | SCRIPT_SH = |
234 | TEST_PROGRAMS = | 233 | TEST_PROGRAMS = |
@@ -315,6 +314,7 @@ LIB_OBJS += util/wrapper.o | |||
315 | 314 | ||
316 | BUILTIN_OBJS += builtin-help.o | 315 | BUILTIN_OBJS += builtin-help.o |
317 | BUILTIN_OBJS += builtin-record.o | 316 | BUILTIN_OBJS += builtin-record.o |
317 | BUILTIN_OBJS += builtin-report.o | ||
318 | BUILTIN_OBJS += builtin-stat.o | 318 | BUILTIN_OBJS += builtin-stat.o |
319 | BUILTIN_OBJS += builtin-top.o | 319 | BUILTIN_OBJS += builtin-top.o |
320 | 320 | ||
@@ -811,10 +811,6 @@ clean: | |||
811 | $(RM) $(htmldocs).tar.gz $(manpages).tar.gz | 811 | $(RM) $(htmldocs).tar.gz $(manpages).tar.gz |
812 | $(RM) PERF-VERSION-FILE PERF-CFLAGS PERF-BUILD-OPTIONS | 812 | $(RM) PERF-VERSION-FILE PERF-CFLAGS PERF-BUILD-OPTIONS |
813 | 813 | ||
814 | # temporary hack: | ||
815 | perf-report: perf-report.cc ../../include/linux/perf_counter.h Makefile | ||
816 | g++ -g -O2 -Wall -lrt -o $@ $< | ||
817 | |||
818 | .PHONY: all install clean strip | 814 | .PHONY: all install clean strip |
819 | .PHONY: shell_compatibility_test please_set_SHELL_PATH_to_a_more_modern_shell | 815 | .PHONY: shell_compatibility_test please_set_SHELL_PATH_to_a_more_modern_shell |
820 | .PHONY: .FORCE-PERF-VERSION-FILE TAGS tags cscope .FORCE-PERF-CFLAGS | 816 | .PHONY: .FORCE-PERF-VERSION-FILE TAGS tags cscope .FORCE-PERF-CFLAGS |