blob: f094f3c4ed84001557503f6cdd8ed33065c86611 [file] [log] [blame]
Josh Poimboeuf442f04c2016-02-28 22:22:41 -06001include ../scripts/Makefile.include
2
3ifndef ($(ARCH))
4ARCH ?= $(shell uname -m)
5ifeq ($(ARCH),x86_64)
6ARCH := x86
7endif
8endif
9
Josh Poimboeufc1d45c32016-03-02 18:39:37 -060010# always use the host compiler
11CC = gcc
12LD = ld
13AR = ar
14
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060015ifeq ($(srctree),)
16srctree := $(patsubst %/,%,$(dir $(shell pwd)))
17srctree := $(patsubst %/,%,$(dir $(srctree)))
18endif
19
Josh Poimboeufc1d45c32016-03-02 18:39:37 -060020SUBCMD_SRCDIR = $(srctree)/tools/lib/subcmd/
21LIBSUBCMD_OUTPUT = $(if $(OUTPUT),$(OUTPUT),$(PWD)/)
22LIBSUBCMD = $(LIBSUBCMD_OUTPUT)libsubcmd.a
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060023
24OBJTOOL := $(OUTPUT)objtool
25OBJTOOL_IN := $(OBJTOOL)-in.o
26
27all: $(OBJTOOL)
28
29INCLUDES := -I$(srctree)/tools/include
Josh Poimboeufd435fb52016-03-09 00:06:53 -060030CFLAGS += -Wall -Werror $(EXTRA_WARNINGS) -fomit-frame-pointer -O2 -g $(INCLUDES)
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060031LDFLAGS += -lelf $(LIBSUBCMD)
32
Jan Beulich2e51f262016-05-16 15:31:07 -050033# Allow old libelf to be used:
34elfshdr := $(shell echo '\#include <libelf.h>' | $(CC) $(CFLAGS) -x c -E - | grep elf_getshdr)
35CFLAGS += $(if $(elfshdr),,-DLIBELF_USE_DEPRECATED)
36
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060037AWK = awk
38export srctree OUTPUT CFLAGS ARCH AWK
39include $(srctree)/tools/build/Makefile.include
40
41$(OBJTOOL_IN): fixdep FORCE
42 @$(MAKE) $(build)=objtool
43
44$(OBJTOOL): $(LIBSUBCMD) $(OBJTOOL_IN)
45 @(test -d ../../kernel -a -d ../../tools -a -d ../objtool && (( \
46 diff -I'^#include' arch/x86/insn/insn.c ../../arch/x86/lib/insn.c >/dev/null && \
47 diff -I'^#include' arch/x86/insn/inat.c ../../arch/x86/lib/inat.c >/dev/null && \
48 diff arch/x86/insn/x86-opcode-map.txt ../../arch/x86/lib/x86-opcode-map.txt >/dev/null && \
49 diff arch/x86/insn/gen-insn-attr-x86.awk ../../arch/x86/tools/gen-insn-attr-x86.awk >/dev/null && \
50 diff -I'^#include' arch/x86/insn/insn.h ../../arch/x86/include/asm/insn.h >/dev/null && \
51 diff -I'^#include' arch/x86/insn/inat.h ../../arch/x86/include/asm/inat.h >/dev/null && \
52 diff -I'^#include' arch/x86/insn/inat_types.h ../../arch/x86/include/asm/inat_types.h >/dev/null) \
53 || echo "Warning: objtool: x86 instruction decoder differs from kernel" >&2 )) || true
54 $(QUIET_LINK)$(CC) $(OBJTOOL_IN) $(LDFLAGS) -o $@
55
56
57$(LIBSUBCMD): fixdep FORCE
Josh Poimboeufc1d45c32016-03-02 18:39:37 -060058 $(Q)$(MAKE) -C $(SUBCMD_SRCDIR) OUTPUT=$(LIBSUBCMD_OUTPUT)
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060059
Josh Poimboeufc1d45c32016-03-02 18:39:37 -060060clean:
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060061 $(call QUIET_CLEAN, objtool) $(RM) $(OBJTOOL)
62 $(Q)find $(OUTPUT) -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete
63 $(Q)$(RM) $(OUTPUT)arch/x86/insn/inat-tables.c $(OUTPUT)fixdep
64
65FORCE:
66
67.PHONY: clean FORCE