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