mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 10:14:23 +08:00
10077c9f2d
'targets' should be specified to include .*.cmd files to evaluate if_changed or friends. Here, facility-defs.h and dis-defs.h are generated by filechk. Because filechk does not generate .*.cmd file, the 'targets' addition is meaningless. The filechk correctly updates the target when its content is changed. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
28 lines
648 B
Makefile
28 lines
648 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
|
|
|
|
PHONY += kapi
|
|
|
|
kapi: $(kapi-hdrs-y)
|
|
|
|
hostprogs-y += gen_facilities
|
|
hostprogs-y += gen_opcode_table
|
|
|
|
HOSTCFLAGS_gen_facilities.o += $(LINUXINCLUDE)
|
|
|
|
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)
|