| .. | .. |
|---|
| 1 | | -libperf-$(CONFIG_AUXTRACE) += intel-pt-pkt-decoder.o intel-pt-insn-decoder.o intel-pt-log.o intel-pt-decoder.o |
|---|
| 1 | +perf-$(CONFIG_AUXTRACE) += intel-pt-pkt-decoder.o intel-pt-insn-decoder.o intel-pt-log.o intel-pt-decoder.o |
|---|
| 2 | 2 | |
|---|
| 3 | | -inat_tables_script = util/intel-pt-decoder/gen-insn-attr-x86.awk |
|---|
| 4 | | -inat_tables_maps = util/intel-pt-decoder/x86-opcode-map.txt |
|---|
| 3 | +inat_tables_script = $(srctree)/tools/arch/x86/tools/gen-insn-attr-x86.awk |
|---|
| 4 | +inat_tables_maps = $(srctree)/tools/arch/x86/lib/x86-opcode-map.txt |
|---|
| 5 | 5 | |
|---|
| 6 | 6 | $(OUTPUT)util/intel-pt-decoder/inat-tables.c: $(inat_tables_script) $(inat_tables_maps) |
|---|
| 7 | 7 | $(call rule_mkdir) |
|---|
| .. | .. |
|---|
| 9 | 9 | |
|---|
| 10 | 10 | # Busybox's diff doesn't have -I, avoid warning in the case |
|---|
| 11 | 11 | |
|---|
| 12 | | -$(OUTPUT)util/intel-pt-decoder/intel-pt-insn-decoder.o: util/intel-pt-decoder/intel-pt-insn-decoder.c util/intel-pt-decoder/inat.c $(OUTPUT)util/intel-pt-decoder/inat-tables.c |
|---|
| 13 | | - @(diff -I 2>&1 | grep -q 'option requires an argument' && \ |
|---|
| 14 | | - test -d ../../kernel -a -d ../../tools -a -d ../perf && ( \ |
|---|
| 15 | | - ((diff -B -I'^#include' util/intel-pt-decoder/insn.c ../../arch/x86/lib/insn.c >/dev/null) || \ |
|---|
| 16 | | - (echo "Warning: Intel PT: x86 instruction decoder C file at 'tools/perf/util/intel-pt-decoder/insn.c' differs from latest version at 'arch/x86/lib/insn.c'" >&2)) && \ |
|---|
| 17 | | - ((diff -B -I'^#include' util/intel-pt-decoder/inat.c ../../arch/x86/lib/inat.c >/dev/null) || \ |
|---|
| 18 | | - (echo "Warning: Intel PT: x86 instruction decoder C file at 'tools/perf/util/intel-pt-decoder/inat.c' differs from latest version at 'arch/x86/lib/inat.c'" >&2)) && \ |
|---|
| 19 | | - ((diff -B util/intel-pt-decoder/x86-opcode-map.txt ../../arch/x86/lib/x86-opcode-map.txt >/dev/null) || \ |
|---|
| 20 | | - (echo "Warning: Intel PT: x86 instruction decoder map file at 'tools/perf/util/intel-pt-decoder/x86-opcode-map.txt' differs from latest version at 'arch/x86/lib/x86-opcode-map.txt'" >&2)) && \ |
|---|
| 21 | | - ((diff -B util/intel-pt-decoder/gen-insn-attr-x86.awk ../../arch/x86/tools/gen-insn-attr-x86.awk >/dev/null) || \ |
|---|
| 22 | | - (echo "Warning: Intel PT: x86 instruction decoder script at 'tools/perf/util/intel-pt-decoder/gen-insn-attr-x86.awk' differs from latest version at 'arch/x86/tools/gen-insn-attr-x86.awk'" >&2)) && \ |
|---|
| 23 | | - ((diff -B -I'^#include' util/intel-pt-decoder/insn.h ../../arch/x86/include/asm/insn.h >/dev/null) || \ |
|---|
| 24 | | - (echo "Warning: Intel PT: x86 instruction decoder header at 'tools/perf/util/intel-pt-decoder/insn.h' differs from latest version at 'arch/x86/include/asm/insn.h'" >&2)) && \ |
|---|
| 25 | | - ((diff -B -I'^#include' util/intel-pt-decoder/inat.h ../../arch/x86/include/asm/inat.h >/dev/null) || \ |
|---|
| 26 | | - (echo "Warning: Intel PT: x86 instruction decoder header at 'tools/perf/util/intel-pt-decoder/inat.h' differs from latest version at 'arch/x86/include/asm/inat.h'" >&2)) && \ |
|---|
| 27 | | - ((diff -B -I'^#include' util/intel-pt-decoder/inat_types.h ../../arch/x86/include/asm/inat_types.h >/dev/null) || \ |
|---|
| 28 | | - (echo "Warning: Intel PT: x86 instruction decoder header at 'tools/perf/util/intel-pt-decoder/inat_types.h' differs from latest version at 'arch/x86/include/asm/inat_types.h'" >&2)))) || true |
|---|
| 12 | +$(OUTPUT)util/intel-pt-decoder/intel-pt-insn-decoder.o: util/intel-pt-decoder/intel-pt-insn-decoder.c $(OUTPUT)util/intel-pt-decoder/inat-tables.c |
|---|
| 29 | 13 | $(call rule_mkdir) |
|---|
| 30 | 14 | $(call if_changed_dep,cc_o_c) |
|---|
| 31 | 15 | |
|---|