summaryrefslogtreecommitdiff
path: root/arch/s390/tools/Makefile
blob: 712fc47bee6a18f47f073cd6ece890ce81085fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# 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,__FUN)