diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-05-26 05:10:09 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-05-26 05:26:34 -0400 |
commit | 8ad8db3788fd9a449941fb2392ca85af4ee1cde1 (patch) | |
tree | 8c88edd7cdd4ecce57cda2c46b6dd544d00f97df /Documentation/perf_counter/Makefile | |
parent | 0e9b20b8a1cab6c6ab4f98f917a2d98783103969 (diff) |
perf_counter tools: Librarize event string parsing
Extract the event string parser from builtin-record.c, and
librarize it - to be reused in other commands.
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: 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/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/perf_counter/Makefile b/Documentation/perf_counter/Makefile index 481e4c26cd45..45daa72facdc 100644 --- a/Documentation/perf_counter/Makefile +++ b/Documentation/perf_counter/Makefile | |||
@@ -290,6 +290,7 @@ LIB_H += ../../include/linux/perf_counter.h | |||
290 | LIB_H += perf.h | 290 | LIB_H += perf.h |
291 | LIB_H += util/levenshtein.h | 291 | LIB_H += util/levenshtein.h |
292 | LIB_H += util/parse-options.h | 292 | LIB_H += util/parse-options.h |
293 | LIB_H += util/parse-events.h | ||
293 | LIB_H += util/quote.h | 294 | LIB_H += util/quote.h |
294 | LIB_H += util/util.h | 295 | LIB_H += util/util.h |
295 | LIB_H += util/help.h | 296 | LIB_H += util/help.h |
@@ -304,6 +305,7 @@ LIB_OBJS += util/exec_cmd.o | |||
304 | LIB_OBJS += util/help.o | 305 | LIB_OBJS += util/help.o |
305 | LIB_OBJS += util/levenshtein.o | 306 | LIB_OBJS += util/levenshtein.o |
306 | LIB_OBJS += util/parse-options.o | 307 | LIB_OBJS += util/parse-options.o |
308 | LIB_OBJS += util/parse-events.o | ||
307 | LIB_OBJS += util/path.o | 309 | LIB_OBJS += util/path.o |
308 | LIB_OBJS += util/run-command.o | 310 | LIB_OBJS += util/run-command.o |
309 | LIB_OBJS += util/quote.o | 311 | LIB_OBJS += util/quote.o |