Makefile 3.6 KB

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