forked from Minki/linux
ba97df4558
You do not have to use define ... endef for filechk_* rules. For simple cases, the use of assignment looks cleaner, IMHO. I updated the usage for scripts/Kbuild.include in case somebody misunderstands the 'define ... endif' is the requirement. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Heiko Carstens <heiko.carstens@de.ibm.com>
33 lines
850 B
Makefile
33 lines
850 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 $(LINUXINCLUDE)
|
|
|
|
# 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)
|