83ef8724c83367f28f7f1884d73a079e32962cef
[pandora-kernel.git] / arch / s390 / Makefile
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
16 ifndef CONFIG_64BIT
17 LDFLAGS         := -m elf_s390
18 KBUILD_CFLAGS   += -m31
19 KBUILD_AFLAGS   += -m31
20 UTS_MACHINE     := s390
21 STACK_SIZE      := 8192
22 CHECKFLAGS      += -D__s390__ -msize-long
23 else
24 LDFLAGS         := -m elf64_s390
25 KBUILD_AFLAGS_MODULE += -fpic -D__PIC__
26 KBUILD_CFLAGS_MODULE += -fpic -D__PIC__
27 KBUILD_CFLAGS   += -m64
28 KBUILD_AFLAGS   += -m64
29 UTS_MACHINE     := s390x
30 STACK_SIZE      := 16384
31 CHECKFLAGS      += -D__s390__ -D__s390x__
32 endif
33
34 cflags-$(CONFIG_MARCH_G5)   += $(call cc-option,-march=g5)
35 cflags-$(CONFIG_MARCH_Z900) += $(call cc-option,-march=z900)
36 cflags-$(CONFIG_MARCH_Z990) += $(call cc-option,-march=z990)
37 cflags-$(CONFIG_MARCH_Z9_109) += $(call cc-option,-march=z9-109)
38 cflags-$(CONFIG_MARCH_Z10) += $(call cc-option,-march=z10)
39
40 #KBUILD_IMAGE is necessary for make rpm
41 KBUILD_IMAGE    :=arch/s390/boot/image
42
43 #
44 # Prevent tail-call optimizations, to get clearer backtraces:
45 #
46 cflags-$(CONFIG_FRAME_POINTER) += -fno-optimize-sibling-calls
47
48 # old style option for packed stacks
49 ifeq ($(call cc-option-yn,-mkernel-backchain),y)
50 cflags-$(CONFIG_PACK_STACK)  += -mkernel-backchain -D__PACK_STACK
51 aflags-$(CONFIG_PACK_STACK)  += -D__PACK_STACK
52 cflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
53 aflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
54 ifdef CONFIG_SMALL_STACK
55 STACK_SIZE := $(shell echo $$(($(STACK_SIZE)/2)) )
56 endif
57 endif
58
59 # new style option for packed stacks
60 ifeq ($(call cc-option-yn,-mpacked-stack),y)
61 cflags-$(CONFIG_PACK_STACK)  += -mpacked-stack -D__PACK_STACK
62 aflags-$(CONFIG_PACK_STACK)  += -D__PACK_STACK
63 cflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
64 aflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
65 ifdef CONFIG_SMALL_STACK
66 STACK_SIZE := $(shell echo $$(($(STACK_SIZE)/2)) )
67 endif
68 endif
69
70 ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y)
71 cflags-$(CONFIG_CHECK_STACK) += -mstack-size=$(STACK_SIZE)
72 ifneq ($(call cc-option-yn,-mstack-size=8192),y)
73 cflags-$(CONFIG_CHECK_STACK) += -mstack-guard=$(CONFIG_STACK_GUARD)
74 endif
75 endif
76
77 ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y)
78 cflags-$(CONFIG_WARN_STACK) += -mwarn-dynamicstack
79 cflags-$(CONFIG_WARN_STACK) += -mwarn-framesize=$(CONFIG_WARN_STACK_SIZE)
80 endif
81
82 KBUILD_CFLAGS   += -mbackchain -msoft-float $(cflags-y)
83 KBUILD_CFLAGS   += -pipe -fno-strength-reduce -Wno-sign-compare
84 KBUILD_AFLAGS   += $(aflags-y)
85
86 OBJCOPYFLAGS    := -O binary
87 LDFLAGS_vmlinux := -e start
88
89 head-y          := arch/s390/kernel/head.o arch/s390/kernel/init_task.o
90
91 core-y          += arch/s390/mm/ arch/s390/kernel/ arch/s390/crypto/ \
92                    arch/s390/appldata/ arch/s390/hypfs/ arch/s390/kvm/
93
94 libs-y          += arch/s390/lib/
95 drivers-y       += drivers/s390/
96 drivers-$(CONFIG_MATHEMU) += arch/s390/math-emu/
97
98 # must be linked after kernel
99 drivers-$(CONFIG_OPROFILE)      += arch/s390/oprofile/
100
101 boot            := arch/s390/boot
102
103 all: image
104
105 install: vmlinux
106         $(Q)$(MAKE) $(build)=$(boot) $@
107
108 image: vmlinux
109         $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
110
111 zfcpdump:
112         $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
113
114 archclean:
115         $(Q)$(MAKE) $(clean)=$(boot)
116
117 # Don't use tabs in echo arguments
118 define archhelp
119   echo  '* image           - Kernel image for IPL ($(boot)/image)'
120 endef