Makefile 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. ifndef CONFIG_64BIT
  16. LD_BFD := elf32-s390
  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. LD_BFD := elf64-s390
  25. LDFLAGS := -m elf64_s390
  26. KBUILD_AFLAGS_MODULE += -fpic -D__PIC__
  27. KBUILD_CFLAGS_MODULE += -fpic -D__PIC__
  28. KBUILD_CFLAGS += -m64
  29. KBUILD_AFLAGS += -m64
  30. UTS_MACHINE := s390x
  31. STACK_SIZE := 16384
  32. CHECKFLAGS += -D__s390__ -D__s390x__
  33. endif
  34. export LD_BFD
  35. cflags-$(CONFIG_MARCH_G5) += $(call cc-option,-march=g5)
  36. cflags-$(CONFIG_MARCH_Z900) += $(call cc-option,-march=z900)
  37. cflags-$(CONFIG_MARCH_Z990) += $(call cc-option,-march=z990)
  38. cflags-$(CONFIG_MARCH_Z9_109) += $(call cc-option,-march=z9-109)
  39. cflags-$(CONFIG_MARCH_Z10) += $(call cc-option,-march=z10)
  40. cflags-$(CONFIG_MARCH_Z196) += $(call cc-option,-march=z196)
  41. #KBUILD_IMAGE is necessary for make rpm
  42. KBUILD_IMAGE :=arch/s390/boot/image
  43. #
  44. # Prevent tail-call optimizations, to get clearer backtraces:
  45. #
  46. cflags-$(CONFIG_FRAME_POINTER) += -fno-optimize-sibling-calls
  47. # old style option for packed stacks
  48. ifeq ($(call cc-option-yn,-mkernel-backchain),y)
  49. cflags-$(CONFIG_PACK_STACK) += -mkernel-backchain -D__PACK_STACK
  50. aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK
  51. cflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
  52. aflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
  53. ifdef CONFIG_SMALL_STACK
  54. STACK_SIZE := $(shell echo $$(($(STACK_SIZE)/2)) )
  55. endif
  56. endif
  57. # new style option for packed stacks
  58. ifeq ($(call cc-option-yn,-mpacked-stack),y)
  59. cflags-$(CONFIG_PACK_STACK) += -mpacked-stack -D__PACK_STACK
  60. aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK
  61. cflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
  62. aflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
  63. ifdef CONFIG_SMALL_STACK
  64. STACK_SIZE := $(shell echo $$(($(STACK_SIZE)/2)) )
  65. endif
  66. endif
  67. ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y)
  68. cflags-$(CONFIG_CHECK_STACK) += -mstack-size=$(STACK_SIZE)
  69. ifneq ($(call cc-option-yn,-mstack-size=8192),y)
  70. cflags-$(CONFIG_CHECK_STACK) += -mstack-guard=$(CONFIG_STACK_GUARD)
  71. endif
  72. endif
  73. ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y)
  74. cflags-$(CONFIG_WARN_DYNAMIC_STACK) += -mwarn-dynamicstack
  75. endif
  76. KBUILD_CFLAGS += -mbackchain -msoft-float $(cflags-y)
  77. KBUILD_CFLAGS += -pipe -fno-strength-reduce -Wno-sign-compare
  78. KBUILD_AFLAGS += $(aflags-y)
  79. OBJCOPYFLAGS := -O binary
  80. head-y := arch/s390/kernel/head.o
  81. head-y += arch/s390/kernel/$(if $(CONFIG_64BIT),head64.o,head31.o)
  82. head-y += arch/s390/kernel/init_task.o
  83. # See arch/s390/Kbuild for content of core part of the kernel
  84. core-y += arch/s390/
  85. libs-y += arch/s390/lib/
  86. drivers-y += drivers/s390/
  87. # must be linked after kernel
  88. drivers-$(CONFIG_OPROFILE) += arch/s390/oprofile/
  89. boot := arch/s390/boot
  90. all: image bzImage
  91. install: vmlinux
  92. $(Q)$(MAKE) $(build)=$(boot) $@
  93. image bzImage: vmlinux
  94. $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
  95. zfcpdump:
  96. $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
  97. vdso_install:
  98. ifeq ($(CONFIG_64BIT),y)
  99. $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso64 $@
  100. endif
  101. $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso32 $@
  102. archclean:
  103. $(Q)$(MAKE) $(clean)=$(boot)
  104. # Don't use tabs in echo arguments
  105. define archhelp
  106. echo '* image - Kernel image for IPL ($(boot)/image)'
  107. echo '* bzImage - Compressed kernel image for IPL ($(boot)/bzImage)'
  108. endef