mirror of
https://github.com/torvalds/linux.git
synced 2024-12-16 08:02:17 +00:00
ab35727eb8
Remove unused parameter from the call function, which I accidentally added. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
25 lines
591 B
Makefile
25 lines
591 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for s390 specific build tools
|
|
#
|
|
|
|
hostprogs-y += gen_facilities
|
|
hostprogs-y += gen_opcode_table
|
|
|
|
HOSTCFLAGS_gen_facilities.o += -Wall $(LINUXINCLUDE)
|
|
HOSTCFLAGS_gen_opcode_table.o += -Wall $(LINUXINCLUDE)
|
|
|
|
define filechk_facilities.h
|
|
$(obj)/gen_facilities
|
|
endef
|
|
|
|
define filechk_dis.h
|
|
( $(obj)/gen_opcode_table < $(srctree)/arch/$(ARCH)/tools/opcodes.txt )
|
|
endef
|
|
|
|
include/generated/facilities.h: $(obj)/gen_facilities FORCE
|
|
$(call filechk,facilities.h)
|
|
|
|
include/generated/dis.h: $(obj)/gen_opcode_table FORCE
|
|
$(call filechk,dis.h)
|