diff options
Diffstat (limited to 'tools/perf/Makefile.perf')
-rw-r--r-- | tools/perf/Makefile.perf | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index 895edd32930c..02f0a4dd1a80 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf | |||
@@ -222,12 +222,12 @@ LIB_H += util/include/linux/const.h | |||
222 | LIB_H += util/include/linux/ctype.h | 222 | LIB_H += util/include/linux/ctype.h |
223 | LIB_H += util/include/linux/kernel.h | 223 | LIB_H += util/include/linux/kernel.h |
224 | LIB_H += util/include/linux/list.h | 224 | LIB_H += util/include/linux/list.h |
225 | LIB_H += util/include/linux/export.h | 225 | LIB_H += ../include/linux/export.h |
226 | LIB_H += util/include/linux/poison.h | 226 | LIB_H += util/include/linux/poison.h |
227 | LIB_H += util/include/linux/rbtree.h | 227 | LIB_H += util/include/linux/rbtree.h |
228 | LIB_H += util/include/linux/rbtree_augmented.h | 228 | LIB_H += util/include/linux/rbtree_augmented.h |
229 | LIB_H += util/include/linux/string.h | 229 | LIB_H += util/include/linux/string.h |
230 | LIB_H += util/include/linux/types.h | 230 | LIB_H += ../include/linux/types.h |
231 | LIB_H += util/include/linux/linkage.h | 231 | LIB_H += util/include/linux/linkage.h |
232 | LIB_H += util/include/asm/asm-offsets.h | 232 | LIB_H += util/include/asm/asm-offsets.h |
233 | LIB_H += ../include/asm/bug.h | 233 | LIB_H += ../include/asm/bug.h |
@@ -252,7 +252,6 @@ LIB_H += util/event.h | |||
252 | LIB_H += util/evsel.h | 252 | LIB_H += util/evsel.h |
253 | LIB_H += util/evlist.h | 253 | LIB_H += util/evlist.h |
254 | LIB_H += util/exec_cmd.h | 254 | LIB_H += util/exec_cmd.h |
255 | LIB_H += util/types.h | ||
256 | LIB_H += util/levenshtein.h | 255 | LIB_H += util/levenshtein.h |
257 | LIB_H += util/machine.h | 256 | LIB_H += util/machine.h |
258 | LIB_H += util/map.h | 257 | LIB_H += util/map.h |
@@ -397,7 +396,10 @@ LIB_OBJS += $(OUTPUT)tests/rdpmc.o | |||
397 | LIB_OBJS += $(OUTPUT)tests/evsel-roundtrip-name.o | 396 | LIB_OBJS += $(OUTPUT)tests/evsel-roundtrip-name.o |
398 | LIB_OBJS += $(OUTPUT)tests/evsel-tp-sched.o | 397 | LIB_OBJS += $(OUTPUT)tests/evsel-tp-sched.o |
399 | LIB_OBJS += $(OUTPUT)tests/pmu.o | 398 | LIB_OBJS += $(OUTPUT)tests/pmu.o |
399 | LIB_OBJS += $(OUTPUT)tests/hists_common.o | ||
400 | LIB_OBJS += $(OUTPUT)tests/hists_link.o | 400 | LIB_OBJS += $(OUTPUT)tests/hists_link.o |
401 | LIB_OBJS += $(OUTPUT)tests/hists_filter.o | ||
402 | LIB_OBJS += $(OUTPUT)tests/hists_output.o | ||
401 | LIB_OBJS += $(OUTPUT)tests/python-use.o | 403 | LIB_OBJS += $(OUTPUT)tests/python-use.o |
402 | LIB_OBJS += $(OUTPUT)tests/bp_signal.o | 404 | LIB_OBJS += $(OUTPUT)tests/bp_signal.o |
403 | LIB_OBJS += $(OUTPUT)tests/bp_signal_overflow.o | 405 | LIB_OBJS += $(OUTPUT)tests/bp_signal_overflow.o |
@@ -410,10 +412,12 @@ LIB_OBJS += $(OUTPUT)tests/code-reading.o | |||
410 | LIB_OBJS += $(OUTPUT)tests/sample-parsing.o | 412 | LIB_OBJS += $(OUTPUT)tests/sample-parsing.o |
411 | LIB_OBJS += $(OUTPUT)tests/parse-no-sample-id-all.o | 413 | LIB_OBJS += $(OUTPUT)tests/parse-no-sample-id-all.o |
412 | ifndef NO_DWARF_UNWIND | 414 | ifndef NO_DWARF_UNWIND |
413 | ifeq ($(ARCH),x86) | 415 | ifeq ($(ARCH),$(filter $(ARCH),x86 arm)) |
414 | LIB_OBJS += $(OUTPUT)tests/dwarf-unwind.o | 416 | LIB_OBJS += $(OUTPUT)tests/dwarf-unwind.o |
415 | endif | 417 | endif |
416 | endif | 418 | endif |
419 | LIB_OBJS += $(OUTPUT)tests/mmap-thread-lookup.o | ||
420 | LIB_OBJS += $(OUTPUT)tests/thread-mg-share.o | ||
417 | 421 | ||
418 | BUILTIN_OBJS += $(OUTPUT)builtin-annotate.o | 422 | BUILTIN_OBJS += $(OUTPUT)builtin-annotate.o |
419 | BUILTIN_OBJS += $(OUTPUT)builtin-bench.o | 423 | BUILTIN_OBJS += $(OUTPUT)builtin-bench.o |