forked from Minki/linux
e888f7419d
I guess HOSTCFLAGS_gen_opcode_table.o was blindly copied from HOSTCFLAGS_gen_facilities.o The reason of adding $(LINUXINCLUDE) to HOSTCFLAGS_gen_facilities.o is because gen_facilities.c references some CONFIG options. (Kbuild does not cater to this for host tools automatically.) On the other hand, gen_opcode_table.c does not reference CONFIG options at all. So, there is no good reason to pass $(LINUXINCLUDE). Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
33 lines
834 B
Makefile
33 lines
834 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for s390 specific build tools
|
|
#
|
|
|
|
kapi := arch/$(ARCH)/include/generated/asm
|
|
kapi-hdrs-y := $(kapi)/facility-defs.h $(kapi)/dis-defs.h
|
|
|
|
targets += $(addprefix ../../../,$(kapi-hdrs-y))
|
|
PHONY += kapi
|
|
|
|
kapi: $(kapi-hdrs-y)
|
|
|
|
hostprogs-y += gen_facilities
|
|
hostprogs-y += gen_opcode_table
|
|
|
|
HOSTCFLAGS_gen_facilities.o += -Wall $(LINUXINCLUDE)
|
|
HOSTCFLAGS_gen_opcode_table.o += -Wall
|
|
|
|
# Ensure output directory exists
|
|
_dummy := $(shell [ -d '$(kapi)' ] || mkdir -p '$(kapi)')
|
|
|
|
filechk_facility-defs.h = $(obj)/gen_facilities
|
|
|
|
filechk_dis-defs.h = \
|
|
$(obj)/gen_opcode_table < $(srctree)/arch/$(ARCH)/tools/opcodes.txt
|
|
|
|
$(kapi)/facility-defs.h: $(obj)/gen_facilities FORCE
|
|
$(call filechk,facility-defs.h)
|
|
|
|
$(kapi)/dis-defs.h: $(obj)/gen_opcode_table FORCE
|
|
$(call filechk,dis-defs.h)
|