Makefile 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. # 20050320 Kianusch Sayah Karadji <kianusch@sk-tech.net>
  18. # Added support for GEODE CPU
  19. HAS_BIARCH := $(call cc-option-yn, -m32)
  20. ifeq ($(HAS_BIARCH),y)
  21. AS := $(AS) --32
  22. LD := $(LD) -m elf_i386
  23. CC := $(CC) -m32
  24. endif
  25. LDFLAGS := -m elf_i386
  26. OBJCOPYFLAGS := -O binary -R .note -R .comment -S
  27. ifdef CONFIG_RELOCATABLE
  28. LDFLAGS_vmlinux := --emit-relocs
  29. endif
  30. CHECKFLAGS += -D__i386__
  31. CFLAGS += -pipe -msoft-float
  32. # prevent gcc from keeping the stack 16 byte aligned
  33. CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2)
  34. # CPU-specific tuning. Anything which can be shared with UML should go here.
  35. include $(srctree)/arch/i386/Makefile.cpu
  36. cflags-$(CONFIG_REGPARM) += -mregparm=3
  37. # temporary until string.h is fixed
  38. cflags-y += -ffreestanding
  39. # this works around some issues with generating unwind tables in older gccs
  40. # newer gccs do it by default
  41. cflags-y += -maccumulate-outgoing-args
  42. # Disable unit-at-a-time mode on pre-gcc-4.0 compilers, it makes gcc use
  43. # a lot more stack due to the lack of sharing of stacklots:
  44. CFLAGS += $(shell if [ $(call cc-version) -lt 0400 ] ; then echo $(call cc-option,-fno-unit-at-a-time); fi ;)
  45. # do binutils support CFI?
  46. cflags-y += $(call as-instr,.cfi_startproc\n.cfi_endproc,-DCONFIG_AS_CFI=1,)
  47. AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_endproc,-DCONFIG_AS_CFI=1,)
  48. # is .cfi_signal_frame supported too?
  49. cflags-y += $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIGNAL_FRAME=1,)
  50. AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIGNAL_FRAME=1,)
  51. CFLAGS += $(cflags-y)
  52. # Default subarch .c files
  53. mcore-y := mach-default
  54. # Voyager subarch support
  55. mflags-$(CONFIG_X86_VOYAGER) := -Iinclude/asm-i386/mach-voyager
  56. mcore-$(CONFIG_X86_VOYAGER) := mach-voyager
  57. # VISWS subarch support
  58. mflags-$(CONFIG_X86_VISWS) := -Iinclude/asm-i386/mach-visws
  59. mcore-$(CONFIG_X86_VISWS) := mach-visws
  60. # NUMAQ subarch support
  61. mflags-$(CONFIG_X86_NUMAQ) := -Iinclude/asm-i386/mach-numaq
  62. mcore-$(CONFIG_X86_NUMAQ) := mach-default
  63. # BIGSMP subarch support
  64. mflags-$(CONFIG_X86_BIGSMP) := -Iinclude/asm-i386/mach-bigsmp
  65. mcore-$(CONFIG_X86_BIGSMP) := mach-default
  66. #Summit subarch support
  67. mflags-$(CONFIG_X86_SUMMIT) := -Iinclude/asm-i386/mach-summit
  68. mcore-$(CONFIG_X86_SUMMIT) := mach-default
  69. # generic subarchitecture
  70. mflags-$(CONFIG_X86_GENERICARCH) := -Iinclude/asm-i386/mach-generic
  71. mcore-$(CONFIG_X86_GENERICARCH) := mach-default
  72. core-$(CONFIG_X86_GENERICARCH) += arch/i386/mach-generic/
  73. # ES7000 subarch support
  74. mflags-$(CONFIG_X86_ES7000) := -Iinclude/asm-i386/mach-es7000
  75. mcore-$(CONFIG_X86_ES7000) := mach-default
  76. core-$(CONFIG_X86_ES7000) := arch/i386/mach-es7000/
  77. # default subarch .h files
  78. mflags-y += -Iinclude/asm-i386/mach-default
  79. head-y := arch/i386/kernel/head.o arch/i386/kernel/init_task.o
  80. libs-y += arch/i386/lib/
  81. core-y += arch/i386/kernel/ \
  82. arch/i386/mm/ \
  83. arch/i386/$(mcore-y)/ \
  84. arch/i386/crypto/
  85. drivers-$(CONFIG_MATH_EMULATION) += arch/i386/math-emu/
  86. drivers-$(CONFIG_PCI) += arch/i386/pci/
  87. # must be linked after kernel/
  88. drivers-$(CONFIG_OPROFILE) += arch/i386/oprofile/
  89. drivers-$(CONFIG_PM) += arch/i386/power/
  90. CFLAGS += $(mflags-y)
  91. AFLAGS += $(mflags-y)
  92. boot := arch/i386/boot
  93. PHONY += zImage bzImage compressed zlilo bzlilo \
  94. zdisk bzdisk fdimage fdimage144 fdimage288 isoimage install
  95. all: bzImage
  96. # KBUILD_IMAGE specify target image being built
  97. KBUILD_IMAGE := $(boot)/bzImage
  98. zImage zlilo zdisk: KBUILD_IMAGE := arch/i386/boot/zImage
  99. zImage bzImage: vmlinux
  100. $(Q)$(MAKE) $(build)=$(boot) $(KBUILD_IMAGE)
  101. compressed: zImage
  102. zlilo bzlilo: vmlinux
  103. $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zlilo
  104. zdisk bzdisk: vmlinux
  105. $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zdisk
  106. fdimage fdimage144 fdimage288 isoimage: vmlinux
  107. $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) $@
  108. install:
  109. $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install
  110. archclean:
  111. $(Q)$(MAKE) $(clean)=arch/i386/boot
  112. define archhelp
  113. echo '* bzImage - Compressed kernel image (arch/$(ARCH)/boot/bzImage)'
  114. echo ' install - Install kernel using'
  115. echo ' (your) ~/bin/installkernel or'
  116. echo ' (distribution) /sbin/installkernel or'
  117. echo ' install to $$(INSTALL_PATH) and run lilo'
  118. echo ' bzdisk - Create a boot floppy in /dev/fd0'
  119. echo ' fdimage - Create a boot floppy image'
  120. echo ' isoimage - Create a boot CD-ROM image'
  121. endef
  122. CLEAN_FILES += arch/$(ARCH)/boot/fdimage \
  123. arch/$(ARCH)/boot/image.iso \
  124. arch/$(ARCH)/boot/mtools.conf