diff options
author | Steven Rostedt <srostedt@redhat.com> | 2012-04-05 18:47:52 -0400 |
---|---|---|
committer | Frederic Weisbecker <fweisbec@gmail.com> | 2012-04-25 06:28:18 -0400 |
commit | 4ace73eef52c651b8f58415fb4476f4791c95e72 (patch) | |
tree | 0ca1b5eed67f89f42193b68728e4ba9f31297519 /tools/perf/Makefile | |
parent | 3dbe927b1eddcbd66da1653168e33122aca84f4e (diff) |
perf: Separate out trace-cmd parse-events from perf files
Move the trace-event-parse.c code that originally came from trace-cmd into
their own files. The new file will be called trace-parse-events.c, as
the name of trace-cmd's file was parse-events.c too, but it conflicted
with the parse-events.c file in perf that parses the command line.
This tries to update the code with mimimal changes.
Perf specific code stays in the trace-event-parse.[ch] files and
the common parsing code is now in trace-parse-events.c and
trace-parse-events.h.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Arnaldo Carvalho de Melo <acme@infradead.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Arun Sharma <asharma@fb.com>
Cc: Namhyung Kim <namhyung.kim@lge.com>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
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 e98e14c88532..819102342985 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
@@ -292,6 +292,7 @@ LIB_H += util/hist.h | |||
292 | LIB_H += util/thread.h | 292 | LIB_H += util/thread.h |
293 | LIB_H += util/thread_map.h | 293 | LIB_H += util/thread_map.h |
294 | LIB_H += util/trace-event.h | 294 | LIB_H += util/trace-event.h |
295 | LIB_H += util/trace-parse-events.h | ||
295 | LIB_H += util/probe-finder.h | 296 | LIB_H += util/probe-finder.h |
296 | LIB_H += util/dwarf-aux.h | 297 | LIB_H += util/dwarf-aux.h |
297 | LIB_H += util/probe-event.h | 298 | LIB_H += util/probe-event.h |
@@ -353,6 +354,7 @@ LIB_OBJS += $(OUTPUT)util/pmu-bison.o | |||
353 | LIB_OBJS += $(OUTPUT)util/trace-event-read.o | 354 | LIB_OBJS += $(OUTPUT)util/trace-event-read.o |
354 | LIB_OBJS += $(OUTPUT)util/trace-event-info.o | 355 | LIB_OBJS += $(OUTPUT)util/trace-event-info.o |
355 | LIB_OBJS += $(OUTPUT)util/trace-event-scripting.o | 356 | LIB_OBJS += $(OUTPUT)util/trace-event-scripting.o |
357 | LIB_OBJS += $(OUTPUT)util/trace-parse-events.o | ||
356 | LIB_OBJS += $(OUTPUT)util/svghelper.o | 358 | LIB_OBJS += $(OUTPUT)util/svghelper.o |
357 | LIB_OBJS += $(OUTPUT)util/sort.o | 359 | LIB_OBJS += $(OUTPUT)util/sort.o |
358 | LIB_OBJS += $(OUTPUT)util/hist.o | 360 | LIB_OBJS += $(OUTPUT)util/hist.o |