blob: 74ef57dcfa60b5bb9527d6651440995851aa9ebd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
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
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -080016ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070017LDFLAGS := -m elf_s390
18CFLAGS += -m31
19AFLAGS += -m31
20UTS_MACHINE := s390
21STACK_SIZE := 8192
viro@ZenIV.linux.org.ukd310a352005-09-09 16:56:05 +010022CHECKFLAGS += -D__s390__
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -080023else
Linus Torvalds1da177e2005-04-16 15:20:36 -070024LDFLAGS := -m elf64_s390
25MODFLAGS += -fpic -D__PIC__
26CFLAGS += -m64
27AFLAGS += -m64
28UTS_MACHINE := s390x
29STACK_SIZE := 16384
viro@ZenIV.linux.org.ukd310a352005-09-09 16:56:05 +010030CHECKFLAGS += -D__s390__ -D__s390x__
Linus Torvalds1da177e2005-04-16 15:20:36 -070031endif
32
33cflags-$(CONFIG_MARCH_G5) += $(call cc-option,-march=g5)
34cflags-$(CONFIG_MARCH_Z900) += $(call cc-option,-march=z900)
35cflags-$(CONFIG_MARCH_Z990) += $(call cc-option,-march=z990)
36
Heiko Carstenscbbd1fa2006-07-03 00:24:38 -070037#
38# Prevent tail-call optimizations, to get clearer backtraces:
39#
40cflags-$(CONFIG_FRAME_POINTER) += -fno-optimize-sibling-calls
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042# old style option for packed stacks
43ifeq ($(call cc-option-yn,-mkernel-backchain),y)
44cflags-$(CONFIG_PACK_STACK) += -mkernel-backchain -D__PACK_STACK
45aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK
46cflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
47aflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
48ifdef CONFIG_SMALL_STACK
49STACK_SIZE := $(shell echo $$(($(STACK_SIZE)/2)) )
50endif
51endif
52
53# new style option for packed stacks
54ifeq ($(call cc-option-yn,-mpacked-stack),y)
55cflags-$(CONFIG_PACK_STACK) += -mpacked-stack -D__PACK_STACK
56aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK
57cflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
58aflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
59ifdef CONFIG_SMALL_STACK
60STACK_SIZE := $(shell echo $$(($(STACK_SIZE)/2)) )
61endif
62endif
63
64ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y)
65cflags-$(CONFIG_CHECK_STACK) += -mstack-size=$(STACK_SIZE)
66cflags-$(CONFIG_CHECK_STACK) += -mstack-guard=$(CONFIG_STACK_GUARD)
67endif
68
69ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y)
70cflags-$(CONFIG_WARN_STACK) += -mwarn-dynamicstack
71cflags-$(CONFIG_WARN_STACK) += -mwarn-framesize=$(CONFIG_WARN_STACK_SIZE)
72endif
73
74CFLAGS += -mbackchain -msoft-float $(cflags-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075CFLAGS += -pipe -fno-strength-reduce -Wno-sign-compare
76AFLAGS += $(aflags-y)
77
78OBJCOPYFLAGS := -O binary
79LDFLAGS_vmlinux := -e start
80
Heiko Carstens0ad775d2005-11-07 00:59:12 -080081head-y := arch/$(ARCH)/kernel/head.o arch/$(ARCH)/kernel/init_task.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83core-y += arch/$(ARCH)/mm/ arch/$(ARCH)/kernel/ arch/$(ARCH)/crypto/ \
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070084 arch/$(ARCH)/appldata/ arch/$(ARCH)/hypfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -070085libs-y += arch/$(ARCH)/lib/
86drivers-y += drivers/s390/
87drivers-$(CONFIG_MATHEMU) += arch/$(ARCH)/math-emu/
88
89# must be linked after kernel
90drivers-$(CONFIG_OPROFILE) += arch/s390/oprofile/
91
92boot := arch/$(ARCH)/boot
93
94all: image
95
96install: vmlinux
97 $(Q)$(MAKE) $(build)=$(boot) $@
98
99image: vmlinux
100 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
101
102archclean:
103 $(Q)$(MAKE) $(clean)=$(boot)
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105# Don't use tabs in echo arguments
106define archhelp
107 echo '* image - Kernel image for IPL ($(boot)/image)'
108endef