kbuild: allow assignment to {A,C,LD}FLAGS_MODULE on the command line
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / s390 / Makefile
CommitLineData
1da177e4
LT
1#
2# s390/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies. Remember to do have actions
6# for "archclean" and "archdep" for cleaning up and making dependencies for
7# this architecture
8#
9# This file is subject to the terms and conditions of the GNU General Public
10# License. See the file "COPYING" in the main directory of this archive
11# for more details.
12#
13# Copyright (C) 1994 by Linus Torvalds
14#
15
347a8dc3 16ifndef CONFIG_64BIT
1da177e4 17LDFLAGS := -m elf_s390
a0f97e06 18KBUILD_CFLAGS += -m31
222d394d 19KBUILD_AFLAGS += -m31
1da177e4
LT
20UTS_MACHINE := s390
21STACK_SIZE := 8192
22bb3e9e 22CHECKFLAGS += -D__s390__ -msize-long
347a8dc3 23else
1da177e4 24LDFLAGS := -m elf64_s390
6588169d
SR
25KBUILD_AFLAGS_MODULE += -fpic -D__PIC__
26KBUILD_CFLAGS_MODULE += -fpic -D__PIC__
a0f97e06 27KBUILD_CFLAGS += -m64
222d394d 28KBUILD_AFLAGS += -m64
1da177e4
LT
29UTS_MACHINE := s390x
30STACK_SIZE := 16384
d310a35a 31CHECKFLAGS += -D__s390__ -D__s390x__
1da177e4
LT
32endif
33
34cflags-$(CONFIG_MARCH_G5) += $(call cc-option,-march=g5)
35cflags-$(CONFIG_MARCH_Z900) += $(call cc-option,-march=z900)
36cflags-$(CONFIG_MARCH_Z990) += $(call cc-option,-march=z990)
0efa4703 37cflags-$(CONFIG_MARCH_Z9_109) += $(call cc-option,-march=z9-109)
e37f50e1 38cflags-$(CONFIG_MARCH_Z10) += $(call cc-option,-march=z10)
1da177e4 39
1681ceda
CB
40#KBUILD_IMAGE is necessary for make rpm
41KBUILD_IMAGE :=arch/s390/boot/image
42
cbbd1fa7
HC
43#
44# Prevent tail-call optimizations, to get clearer backtraces:
45#
46cflags-$(CONFIG_FRAME_POINTER) += -fno-optimize-sibling-calls
47
1da177e4
LT
48# old style option for packed stacks
49ifeq ($(call cc-option-yn,-mkernel-backchain),y)
50cflags-$(CONFIG_PACK_STACK) += -mkernel-backchain -D__PACK_STACK
51aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK
52cflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
53aflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
54ifdef CONFIG_SMALL_STACK
55STACK_SIZE := $(shell echo $$(($(STACK_SIZE)/2)) )
56endif
57endif
58
59# new style option for packed stacks
60ifeq ($(call cc-option-yn,-mpacked-stack),y)
61cflags-$(CONFIG_PACK_STACK) += -mpacked-stack -D__PACK_STACK
62aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK
63cflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
64aflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
65ifdef CONFIG_SMALL_STACK
66STACK_SIZE := $(shell echo $$(($(STACK_SIZE)/2)) )
67endif
68endif
69
70ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y)
71cflags-$(CONFIG_CHECK_STACK) += -mstack-size=$(STACK_SIZE)
be796285 72ifneq ($(call cc-option-yn,-mstack-size=8192),y)
1da177e4
LT
73cflags-$(CONFIG_CHECK_STACK) += -mstack-guard=$(CONFIG_STACK_GUARD)
74endif
be796285 75endif
1da177e4
LT
76
77ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y)
78cflags-$(CONFIG_WARN_STACK) += -mwarn-dynamicstack
79cflags-$(CONFIG_WARN_STACK) += -mwarn-framesize=$(CONFIG_WARN_STACK_SIZE)
80endif
81
a0f97e06
SR
82KBUILD_CFLAGS += -mbackchain -msoft-float $(cflags-y)
83KBUILD_CFLAGS += -pipe -fno-strength-reduce -Wno-sign-compare
222d394d 84KBUILD_AFLAGS += $(aflags-y)
1da177e4
LT
85
86OBJCOPYFLAGS := -O binary
87LDFLAGS_vmlinux := -e start
88
4562c9ff 89head-y := arch/s390/kernel/head.o arch/s390/kernel/init_task.o
1da177e4 90
4562c9ff 91core-y += arch/s390/mm/ arch/s390/kernel/ arch/s390/crypto/ \
c48ff644 92 arch/s390/appldata/ arch/s390/hypfs/ arch/s390/kvm/
155af2f9 93
4562c9ff 94libs-y += arch/s390/lib/
1da177e4 95drivers-y += drivers/s390/
4562c9ff 96drivers-$(CONFIG_MATHEMU) += arch/s390/math-emu/
1da177e4
LT
97
98# must be linked after kernel
99drivers-$(CONFIG_OPROFILE) += arch/s390/oprofile/
100
4562c9ff 101boot := arch/s390/boot
1da177e4
LT
102
103all: image
104
105install: vmlinux
106 $(Q)$(MAKE) $(build)=$(boot) $@
107
108image: vmlinux
109 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
110
411ed322
MH
111zfcpdump:
112 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
113
1da177e4
LT
114archclean:
115 $(Q)$(MAKE) $(clean)=$(boot)
116
1da177e4
LT
117# Don't use tabs in echo arguments
118define archhelp
119 echo '* image - Kernel image for IPL ($(boot)/image)'
120endef