diff options
author | David Ahern <dsahern@gmail.com> | 2012-07-31 00:31:34 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-08-03 09:42:25 -0400 |
commit | 70b40c4a43ddfcf7a06dad4be32ff1dd2b62be09 (patch) | |
tree | 76910778151d86cff5a42f2458b79d64eea0c803 /tools/perf/Makefile | |
parent | ee8dd3ca43f151d9fbe1edeef68fb8a77eb9f047 (diff) |
perf tools: Introduce intlist
Built on rblist - like strlist. Used in the next patch.
Signed-off-by: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1343709095-7089-4-git-send-email-dsahern@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.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 285f700a7836..32912af430f0 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
@@ -320,6 +320,7 @@ LIB_H += util/cgroup.h | |||
320 | LIB_H += $(TRACE_EVENT_DIR)event-parse.h | 320 | LIB_H += $(TRACE_EVENT_DIR)event-parse.h |
321 | LIB_H += util/target.h | 321 | LIB_H += util/target.h |
322 | LIB_H += util/rblist.h | 322 | LIB_H += util/rblist.h |
323 | LIB_H += util/intlist.h | ||
323 | 324 | ||
324 | LIB_OBJS += $(OUTPUT)util/abspath.o | 325 | LIB_OBJS += $(OUTPUT)util/abspath.o |
325 | LIB_OBJS += $(OUTPUT)util/alias.o | 326 | LIB_OBJS += $(OUTPUT)util/alias.o |
@@ -385,6 +386,7 @@ LIB_OBJS += $(OUTPUT)util/cpumap.o | |||
385 | LIB_OBJS += $(OUTPUT)util/cgroup.o | 386 | LIB_OBJS += $(OUTPUT)util/cgroup.o |
386 | LIB_OBJS += $(OUTPUT)util/target.o | 387 | LIB_OBJS += $(OUTPUT)util/target.o |
387 | LIB_OBJS += $(OUTPUT)util/rblist.o | 388 | LIB_OBJS += $(OUTPUT)util/rblist.o |
389 | LIB_OBJS += $(OUTPUT)util/intlist.o | ||
388 | 390 | ||
389 | BUILTIN_OBJS += $(OUTPUT)builtin-annotate.o | 391 | BUILTIN_OBJS += $(OUTPUT)builtin-annotate.o |
390 | 392 | ||