blob: 50394da2f6c122da4bac4234a4c6ad41d7dc83e3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
Sam Ravnborg74b469f2007-10-25 19:42:04 +02002# i386 Makefile
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#
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#
Kianusch Sayah Karadji47137412005-05-05 16:16:17 -070017# 20050320 Kianusch Sayah Karadji <kianusch@sk-tech.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018# Added support for GEODE CPU
19
Thomas Gleixnerbec2c482007-10-23 22:37:23 +020020# BITS is used as extension for files which are available in a 32 bit
21# and a 64 bit version to simplify shared Makefiles.
22# e.g.: obj-y += foo_$(BITS).o
23BITS := 32
24export BITS
25
H. Peter Anvind0e7feb2005-06-23 00:08:09 -070026HAS_BIARCH := $(call cc-option-yn, -m32)
27ifeq ($(HAS_BIARCH),y)
28AS := $(AS) --32
29LD := $(LD) -m elf_i386
30CC := $(CC) -m32
31endif
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033LDFLAGS := -m elf_i386
34OBJCOPYFLAGS := -O binary -R .note -R .comment -S
Eric W. Biederman968de4f2006-12-07 02:14:04 +010035ifdef CONFIG_RELOCATABLE
36LDFLAGS_vmlinux := --emit-relocs
37endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070038CHECKFLAGS += -D__i386__
39
Sam Ravnborga0f97e02007-10-14 22:21:35 +020040KBUILD_CFLAGS += -pipe -msoft-float -mregparm=3 -freg-struct-return
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42# prevent gcc from keeping the stack 16 byte aligned
Sam Ravnborga0f97e02007-10-14 22:21:35 +020043KBUILD_CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Paolo 'Blaisorblade' Giarrusso96d55b82005-10-30 15:00:07 -080045# CPU-specific tuning. Anything which can be shared with UML should go here.
Sam Ravnborg74b469f2007-10-25 19:42:04 +020046include $(srctree)/arch/x86/Makefile_32.cpu
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Andi Kleen6edfba12006-03-25 16:29:49 +010048# temporary until string.h is fixed
49cflags-y += -ffreestanding
50
Andi Kleencdfce1f2006-10-21 18:37:01 +020051# this works around some issues with generating unwind tables in older gccs
52# newer gccs do it by default
53cflags-y += -maccumulate-outgoing-args
54
Ingo Molnar9ab34fe2006-01-14 13:21:29 -080055# Disable unit-at-a-time mode on pre-gcc-4.0 compilers, it makes gcc use
56# a lot more stack due to the lack of sharing of stacklots:
Sam Ravnborga0f97e02007-10-14 22:21:35 +020057KBUILD_CFLAGS += $(shell if [ $(call cc-version) -lt 0400 ] ; then echo $(call cc-option,-fno-unit-at-a-time); fi ;)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Andi Kleene2414912006-09-26 10:52:30 +020059# do binutils support CFI?
Andi Kleenf0f12d82007-08-15 02:40:37 +020060cflags-y += $(call as-instr,.cfi_startproc\n.cfi_rel_offset esp${comma}0\n.cfi_endproc,-DCONFIG_AS_CFI=1,)
Sam Ravnborg222d3942007-10-15 21:59:31 +020061KBUILD_AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_rel_offset esp${comma}0\n.cfi_endproc,-DCONFIG_AS_CFI=1,)
Andi Kleene2414912006-09-26 10:52:30 +020062
Jan Beulichadf14232006-09-26 10:52:41 +020063# is .cfi_signal_frame supported too?
Andrew Mortonda8604c2006-10-21 18:37:01 +020064cflags-y += $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIGNAL_FRAME=1,)
Sam Ravnborg222d3942007-10-15 21:59:31 +020065KBUILD_AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIGNAL_FRAME=1,)
Jan Beulichadf14232006-09-26 10:52:41 +020066
Sam Ravnborga0f97e02007-10-14 22:21:35 +020067KBUILD_CFLAGS += $(cflags-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69# Default subarch .c files
Thomas Gleixnerd629e032007-10-11 11:16:48 +020070mcore-y := arch/x86/mach-default
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72# Voyager subarch support
Thomas Gleixner96a388d2007-10-11 11:20:03 +020073mflags-$(CONFIG_X86_VOYAGER) := -Iinclude/asm-x86/mach-voyager
Thomas Gleixner9402e122007-10-11 11:16:53 +020074mcore-$(CONFIG_X86_VOYAGER) := arch/x86/mach-voyager
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76# VISWS subarch support
Thomas Gleixner96a388d2007-10-11 11:20:03 +020077mflags-$(CONFIG_X86_VISWS) := -Iinclude/asm-x86/mach-visws
Thomas Gleixnerc2b84d82007-10-11 11:16:38 +020078mcore-$(CONFIG_X86_VISWS) := arch/x86/mach-visws
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80# NUMAQ subarch support
Thomas Gleixner96a388d2007-10-11 11:20:03 +020081mflags-$(CONFIG_X86_NUMAQ) := -Iinclude/asm-x86/mach-numaq
Thomas Gleixnerd629e032007-10-11 11:16:48 +020082mcore-$(CONFIG_X86_NUMAQ) := arch/x86/mach-default
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84# BIGSMP subarch support
Thomas Gleixner96a388d2007-10-11 11:20:03 +020085mflags-$(CONFIG_X86_BIGSMP) := -Iinclude/asm-x86/mach-bigsmp
Thomas Gleixnerd629e032007-10-11 11:16:48 +020086mcore-$(CONFIG_X86_BIGSMP) := arch/x86/mach-default
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88#Summit subarch support
Thomas Gleixner96a388d2007-10-11 11:20:03 +020089mflags-$(CONFIG_X86_SUMMIT) := -Iinclude/asm-x86/mach-summit
Thomas Gleixnerd629e032007-10-11 11:16:48 +020090mcore-$(CONFIG_X86_SUMMIT) := arch/x86/mach-default
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92# generic subarchitecture
Thomas Gleixner96a388d2007-10-11 11:20:03 +020093mflags-$(CONFIG_X86_GENERICARCH) := -Iinclude/asm-x86/mach-generic
Thomas Gleixnerd629e032007-10-11 11:16:48 +020094mcore-$(CONFIG_X86_GENERICARCH) := arch/x86/mach-default
Thomas Gleixnerc750a662007-10-11 11:16:39 +020095core-$(CONFIG_X86_GENERICARCH) += arch/x86/mach-generic/
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97# ES7000 subarch support
Thomas Gleixner96a388d2007-10-11 11:20:03 +020098mflags-$(CONFIG_X86_ES7000) := -Iinclude/asm-x86/mach-es7000
Thomas Gleixnerd629e032007-10-11 11:16:48 +020099mcore-$(CONFIG_X86_ES7000) := arch/x86/mach-default
Thomas Gleixner334e6212007-10-11 11:16:50 +0200100core-$(CONFIG_X86_ES7000) := arch/x86/mach-es7000/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700102# Xen paravirtualization support
Thomas Gleixner97027852007-10-11 11:16:51 +0200103core-$(CONFIG_XEN) += arch/x86/xen/
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700104
Rusty Russell34b88672007-10-22 11:01:54 +1000105# lguest paravirtualization support
106core-$(CONFIG_LGUEST_GUEST) += arch/x86/lguest/
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108# default subarch .h files
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200109mflags-y += -Iinclude/asm-x86/mach-default
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Hiroshi Shimamoto77788872007-10-19 20:35:02 +0200111head-y := arch/x86/kernel/head_32.o arch/x86/kernel/init_task.o
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Thomas Gleixner44f02572007-10-11 11:16:33 +0200113libs-y += arch/x86/lib/
Thomas Gleixner9a163ed2007-10-11 11:17:01 +0200114core-y += arch/x86/kernel/ \
Thomas Gleixnerad757b62007-10-11 11:16:47 +0200115 arch/x86/mm/ \
Thomas Gleixnerd7394fe2007-10-11 11:11:35 +0200116 $(mcore-y)/ \
Thomas Gleixner9c201942007-10-11 11:16:21 +0200117 arch/x86/crypto/
Thomas Gleixnerda957e12007-10-11 11:16:31 +0200118drivers-$(CONFIG_MATH_EMULATION) += arch/x86/math-emu/
Thomas Gleixnerfb9aa6f2007-10-11 11:16:36 +0200119drivers-$(CONFIG_PCI) += arch/x86/pci/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120# must be linked after kernel/
Thomas Gleixnerff439562007-10-11 11:16:55 +0200121drivers-$(CONFIG_OPROFILE) += arch/x86/oprofile/
Thomas Gleixner4b60eb82007-10-11 11:16:34 +0200122drivers-$(CONFIG_PM) += arch/x86/power/
Thomas Gleixner4ac24f62007-10-11 11:16:56 +0200123drivers-$(CONFIG_FB) += arch/x86/video/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Sam Ravnborga0f97e02007-10-14 22:21:35 +0200125KBUILD_CFLAGS += $(mflags-y)
Sam Ravnborg222d3942007-10-15 21:59:31 +0200126KBUILD_AFLAGS += $(mflags-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Thomas Gleixner96ae6ea2007-10-11 11:16:45 +0200128boot := arch/x86/boot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Paul Smith4f193362006-03-05 17:14:10 -0500130PHONY += zImage bzImage compressed zlilo bzlilo \
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800131 zdisk bzdisk fdimage fdimage144 fdimage288 isoimage install
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133all: bzImage
134
135# KBUILD_IMAGE specify target image being built
136 KBUILD_IMAGE := $(boot)/bzImage
Thomas Gleixner96ae6ea2007-10-11 11:16:45 +0200137zImage zlilo zdisk: KBUILD_IMAGE := arch/x86/boot/zImage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139zImage bzImage: vmlinux
140 $(Q)$(MAKE) $(build)=$(boot) $(KBUILD_IMAGE)
Sam Ravnborg3ceba782007-10-19 20:35:02 +0200141 $(Q)mkdir -p $(objtree)/arch/i386/boot
142 $(Q)ln -fsn ../../x86/boot/bzImage $(objtree)/arch/i386/boot/bzImage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144compressed: zImage
145
146zlilo bzlilo: vmlinux
147 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zlilo
148
149zdisk bzdisk: vmlinux
150 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zdisk
151
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800152fdimage fdimage144 fdimage288 isoimage: vmlinux
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) $@
154
H. Peter Anvin0d20bab2006-01-07 17:38:39 -0800155install:
Sam Ravnborg2cacb3d2005-04-30 16:51:42 -0700156 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158archclean:
Thomas Gleixner96ae6ea2007-10-11 11:16:45 +0200159 $(Q)rm -rf $(objtree)/arch/i386/boot
160 $(Q)$(MAKE) $(clean)=arch/x86/boot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162define archhelp
Sam Ravnborgd746d642007-11-12 20:14:19 +0100163 echo '* bzImage - Compressed kernel image (arch/x86/boot/bzImage)'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 echo ' install - Install kernel using'
165 echo ' (your) ~/bin/installkernel or'
166 echo ' (distribution) /sbin/installkernel or'
167 echo ' install to $$(INSTALL_PATH) and run lilo'
168 echo ' bzdisk - Create a boot floppy in /dev/fd0'
169 echo ' fdimage - Create a boot floppy image'
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800170 echo ' isoimage - Create a boot CD-ROM image'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171endef
172
Sam Ravnborgd746d642007-11-12 20:14:19 +0100173CLEAN_FILES += arch/x86/boot/fdimage \
174 arch/x86/boot/image.iso \
175 arch/x86/boot/mtools.conf