Makefile 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. #
  2. # i386/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" cleaning up for this architecture.
  7. #
  8. # This file is subject to the terms and conditions of the GNU General Public
  9. # License. See the file "COPYING" in the main directory of this archive
  10. # for more details.
  11. #
  12. # Copyright (C) 1994 by Linus Torvalds
  13. #
  14. # 19990713 Artur Skawina <skawina@geocities.com>
  15. # Added '-march' and '-mpreferred-stack-boundary' support
  16. #
  17. # Kianusch Sayah Karadji <kianusch@sk-tech.net>
  18. # Added support for GEODE CPU
  19. LDFLAGS := -m elf_i386
  20. OBJCOPYFLAGS := -O binary -R .note -R .comment -S
  21. LDFLAGS_vmlinux :=
  22. CHECKFLAGS += -D__i386__
  23. CFLAGS += -pipe -msoft-float
  24. # prevent gcc from keeping the stack 16 byte aligned
  25. CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2)
  26. align := $(cc-option-align)
  27. cflags-$(CONFIG_M386) += -march=i386
  28. cflags-$(CONFIG_M486) += -march=i486
  29. cflags-$(CONFIG_M586) += -march=i586
  30. cflags-$(CONFIG_M586TSC) += -march=i586
  31. cflags-$(CONFIG_M586MMX) += $(call cc-option,-march=pentium-mmx,-march=i586)
  32. cflags-$(CONFIG_M686) += -march=i686
  33. cflags-$(CONFIG_MPENTIUMII) += -march=i686 $(call cc-option,-mtune=pentium2)
  34. cflags-$(CONFIG_MPENTIUMIII) += -march=i686 $(call cc-option,-mtune=pentium3)
  35. cflags-$(CONFIG_MPENTIUMM) += -march=i686 $(call cc-option,-mtune=pentium3)
  36. cflags-$(CONFIG_MPENTIUM4) += -march=i686 $(call cc-option,-mtune=pentium4)
  37. cflags-$(CONFIG_MK6) += -march=k6
  38. # Please note, that patches that add -march=athlon-xp and friends are pointless.
  39. # They make zero difference whatsosever to performance at this time.
  40. cflags-$(CONFIG_MK7) += $(call cc-option,-march=athlon,-march=i686 $(align)-functions=4)
  41. cflags-$(CONFIG_MK8) += $(call cc-option,-march=k8,$(call cc-option,-march=athlon,-march=i686 $(align)-functions=4))
  42. cflags-$(CONFIG_MCRUSOE) += -march=i686 $(align)-functions=0 $(align)-jumps=0 $(align)-loops=0
  43. cflags-$(CONFIG_MEFFICEON) += -march=i686 $(call cc-option,-mtune=pentium3) $(align)-functions=0 $(align)-jumps=0 $(align)-loops=0
  44. cflags-$(CONFIG_MWINCHIPC6) += $(call cc-option,-march=winchip-c6,-march=i586)
  45. cflags-$(CONFIG_MWINCHIP2) += $(call cc-option,-march=winchip2,-march=i586)
  46. cflags-$(CONFIG_MWINCHIP3D) += $(call cc-option,-march=winchip2,-march=i586)
  47. cflags-$(CONFIG_MCYRIXIII) += $(call cc-option,-march=c3,-march=i486) $(align)-functions=0 $(align)-jumps=0 $(align)-loops=0
  48. cflags-$(CONFIG_MVIAC3_2) += $(call cc-option,-march=c3-2,-march=i686)
  49. # AMD Elan support
  50. cflags-$(CONFIG_X86_ELAN) += -march=i486
  51. # MediaGX aka Geode support
  52. cflags-$(CONFIG_MGEODE) += $(call cc-option,-march=pentium-mmx,-march=i586)
  53. # -mregparm=3 works ok on gcc-3.0 and later
  54. #
  55. GCC_VERSION := $(call cc-version)
  56. cflags-$(CONFIG_REGPARM) += $(shell if [ $(GCC_VERSION) -ge 0300 ] ; then echo "-mregparm=3"; fi ;)
  57. # Disable unit-at-a-time mode, it makes gcc use a lot more stack
  58. # due to the lack of sharing of stacklots.
  59. CFLAGS += $(call cc-option,-fno-unit-at-a-time)
  60. CFLAGS += $(cflags-y)
  61. # Default subarch .c files
  62. mcore-y := mach-default
  63. # Voyager subarch support
  64. mflags-$(CONFIG_X86_VOYAGER) := -Iinclude/asm-i386/mach-voyager
  65. mcore-$(CONFIG_X86_VOYAGER) := mach-voyager
  66. # VISWS subarch support
  67. mflags-$(CONFIG_X86_VISWS) := -Iinclude/asm-i386/mach-visws
  68. mcore-$(CONFIG_X86_VISWS) := mach-visws
  69. # NUMAQ subarch support
  70. mflags-$(CONFIG_X86_NUMAQ) := -Iinclude/asm-i386/mach-numaq
  71. mcore-$(CONFIG_X86_NUMAQ) := mach-default
  72. # BIGSMP subarch support
  73. mflags-$(CONFIG_X86_BIGSMP) := -Iinclude/asm-i386/mach-bigsmp
  74. mcore-$(CONFIG_X86_BIGSMP) := mach-default
  75. #Summit subarch support
  76. mflags-$(CONFIG_X86_SUMMIT) := -Iinclude/asm-i386/mach-summit
  77. mcore-$(CONFIG_X86_SUMMIT) := mach-default
  78. # generic subarchitecture
  79. mflags-$(CONFIG_X86_GENERICARCH) := -Iinclude/asm-i386/mach-generic
  80. mcore-$(CONFIG_X86_GENERICARCH) := mach-default
  81. core-$(CONFIG_X86_GENERICARCH) += arch/i386/mach-generic/
  82. # ES7000 subarch support
  83. mflags-$(CONFIG_X86_ES7000) := -Iinclude/asm-i386/mach-es7000
  84. mcore-$(CONFIG_X86_ES7000) := mach-default
  85. core-$(CONFIG_X86_ES7000) := arch/i386/mach-es7000/
  86. # default subarch .h files
  87. mflags-y += -Iinclude/asm-i386/mach-default
  88. head-y := arch/i386/kernel/head.o arch/i386/kernel/init_task.o
  89. libs-y += arch/i386/lib/
  90. core-y += arch/i386/kernel/ \
  91. arch/i386/mm/ \
  92. arch/i386/$(mcore-y)/ \
  93. arch/i386/crypto/
  94. drivers-$(CONFIG_MATH_EMULATION) += arch/i386/math-emu/
  95. drivers-$(CONFIG_PCI) += arch/i386/pci/
  96. # must be linked after kernel/
  97. drivers-$(CONFIG_OPROFILE) += arch/i386/oprofile/
  98. drivers-$(CONFIG_PM) += arch/i386/power/
  99. CFLAGS += $(mflags-y)
  100. AFLAGS += $(mflags-y)
  101. boot := arch/i386/boot
  102. .PHONY: zImage bzImage compressed zlilo bzlilo \
  103. zdisk bzdisk fdimage fdimage144 fdimage288 install
  104. all: bzImage
  105. # KBUILD_IMAGE specify target image being built
  106. KBUILD_IMAGE := $(boot)/bzImage
  107. zImage zlilo zdisk: KBUILD_IMAGE := arch/i386/boot/zImage
  108. zImage bzImage: vmlinux
  109. $(Q)$(MAKE) $(build)=$(boot) $(KBUILD_IMAGE)
  110. compressed: zImage
  111. zlilo bzlilo: vmlinux
  112. $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zlilo
  113. zdisk bzdisk: vmlinux
  114. $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zdisk
  115. fdimage fdimage144 fdimage288: vmlinux
  116. $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) $@
  117. install:
  118. $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) $@
  119. prepare: include/asm-$(ARCH)/asm_offsets.h
  120. CLEAN_FILES += include/asm-$(ARCH)/asm_offsets.h
  121. arch/$(ARCH)/kernel/asm-offsets.s: include/asm include/linux/version.h \
  122. include/config/MARKER
  123. include/asm-$(ARCH)/asm_offsets.h: arch/$(ARCH)/kernel/asm-offsets.s
  124. $(call filechk,gen-asm-offsets)
  125. archclean:
  126. $(Q)$(MAKE) $(clean)=arch/i386/boot
  127. define archhelp
  128. echo '* bzImage - Compressed kernel image (arch/$(ARCH)/boot/bzImage)'
  129. echo ' install - Install kernel using'
  130. echo ' (your) ~/bin/installkernel or'
  131. echo ' (distribution) /sbin/installkernel or'
  132. echo ' install to $$(INSTALL_PATH) and run lilo'
  133. echo ' bzdisk - Create a boot floppy in /dev/fd0'
  134. echo ' fdimage - Create a boot floppy image'
  135. endef
  136. CLEAN_FILES += arch/$(ARCH)/boot/fdimage arch/$(ARCH)/boot/mtools.conf