aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/perf_counter/Makefile
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-05-27 03:50:13 -0400
committerIngo Molnar <mingo@elte.hu>2009-05-27 03:59:00 -0400
commita930d2c0d0a685ab955472b08baad041cc5edb4a (patch)
tree988e0da70e64ef72437058828974d946328280af /Documentation/perf_counter/Makefile
parent23ac9cbed82b00ca3520bb81dbe9ea3b7a936a1b (diff)
perf_counter tools: Add built-in pager support
Add Git's pager.c (and sigchain) code. A command only has to call setup_pager() to get paged interactive output. Non-interactive (redirected, command-piped, etc.) uses are not affected. Update perf-report to make use of this. [ Impact: new feature ] Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: Marcelo Tosatti <mtosatti@redhat.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: John Kacur <jkacur@redhat.com> 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/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/perf_counter/Makefile b/Documentation/perf_counter/Makefile
index efb05892db69..51b13f989833 100644
--- a/Documentation/perf_counter/Makefile
+++ b/Documentation/perf_counter/Makefile
@@ -297,11 +297,13 @@ LIB_H += util/util.h
297LIB_H += util/help.h 297LIB_H += util/help.h
298LIB_H += util/strbuf.h 298LIB_H += util/strbuf.h
299LIB_H += util/run-command.h 299LIB_H += util/run-command.h
300LIB_H += util/sigchain.h
300 301
301LIB_OBJS += util/abspath.o 302LIB_OBJS += util/abspath.o
302LIB_OBJS += util/alias.o 303LIB_OBJS += util/alias.o
303LIB_OBJS += util/config.o 304LIB_OBJS += util/config.o
304LIB_OBJS += util/ctype.o 305LIB_OBJS += util/ctype.o
306LIB_OBJS += util/environment.o
305LIB_OBJS += util/exec_cmd.o 307LIB_OBJS += util/exec_cmd.o
306LIB_OBJS += util/help.o 308LIB_OBJS += util/help.o
307LIB_OBJS += util/levenshtein.o 309LIB_OBJS += util/levenshtein.o
@@ -314,6 +316,8 @@ LIB_OBJS += util/quote.o
314LIB_OBJS += util/strbuf.o 316LIB_OBJS += util/strbuf.o
315LIB_OBJS += util/usage.o 317LIB_OBJS += util/usage.o
316LIB_OBJS += util/wrapper.o 318LIB_OBJS += util/wrapper.o
319LIB_OBJS += util/sigchain.o
320LIB_OBJS += util/pager.o
317 321
318BUILTIN_OBJS += builtin-help.o 322BUILTIN_OBJS += builtin-help.o
319BUILTIN_OBJS += builtin-record.o 323BUILTIN_OBJS += builtin-record.o