diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-10-19 13:31:31 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-10-19 21:00:36 -0400 |
commit | 79b9ad361be8c6f3eeea97dd3883e8bcfa989333 (patch) | |
tree | 5915cd1a871cbadb2c94b0df474f39b6c47b1e64 /tools/perf/Makefile | |
parent | 20639c15d2e78f180d398a6b6422880fac3258bb (diff) |
perf tools: Add bunch of missing headers to LIB_H
Build dependencies were not properly mapped out.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
LKML-Reference: <1255973491-11626-1-git-send-email-acme@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/Makefile')
-rw-r--r-- | tools/perf/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile index 3b154f17d95b..64c6b7b57d85 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
@@ -328,8 +328,25 @@ LIB_FILE=libperf.a | |||
328 | LIB_H += ../../include/linux/perf_event.h | 328 | LIB_H += ../../include/linux/perf_event.h |
329 | LIB_H += ../../include/linux/rbtree.h | 329 | LIB_H += ../../include/linux/rbtree.h |
330 | LIB_H += ../../include/linux/list.h | 330 | LIB_H += ../../include/linux/list.h |
331 | LIB_H += util/include/linux/bitmap.h | ||
332 | LIB_H += util/include/linux/bitops.h | ||
333 | LIB_H += util/include/linux/compiler.h | ||
334 | LIB_H += util/include/linux/ctype.h | ||
335 | LIB_H += util/include/linux/kernel.h | ||
331 | LIB_H += util/include/linux/list.h | 336 | LIB_H += util/include/linux/list.h |
337 | LIB_H += util/include/linux/module.h | ||
338 | LIB_H += util/include/linux/poison.h | ||
339 | LIB_H += util/include/linux/prefetch.h | ||
340 | LIB_H += util/include/linux/rbtree.h | ||
332 | LIB_H += util/include/linux/string.h | 341 | LIB_H += util/include/linux/string.h |
342 | LIB_H += util/include/linux/types.h | ||
343 | LIB_H += util/include/asm/asm-offsets.h | ||
344 | LIB_H += util/include/asm/bitops.h | ||
345 | LIB_H += util/include/asm/byteorder.h | ||
346 | LIB_H += util/include/asm/swab.h | ||
347 | LIB_H += util/include/asm/system.h | ||
348 | LIB_H += util/include/asm/types.h | ||
349 | LIB_H += util/include/asm/uaccess.h | ||
333 | LIB_H += perf.h | 350 | LIB_H += perf.h |
334 | LIB_H += util/event.h | 351 | LIB_H += util/event.h |
335 | LIB_H += util/types.h | 352 | LIB_H += util/types.h |