blob: d1aca52bf690d591a83270008054cea3668e5168 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
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#
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
H. Peter Anvind0e7feb2005-06-23 00:08:09 -070020HAS_BIARCH := $(call cc-option-yn, -m32)
21ifeq ($(HAS_BIARCH),y)
22AS := $(AS) --32
23LD := $(LD) -m elf_i386
24CC := $(CC) -m32
25endif
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027LDFLAGS := -m elf_i386
28OBJCOPYFLAGS := -O binary -R .note -R .comment -S
Eric W. Biederman968de4f2006-12-07 02:14:04 +010029ifdef CONFIG_RELOCATABLE
30LDFLAGS_vmlinux := --emit-relocs
31endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070032CHECKFLAGS += -D__i386__
33
34CFLAGS += -pipe -msoft-float
35
36# prevent gcc from keeping the stack 16 byte aligned
37CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2)
38
Paolo 'Blaisorblade' Giarrusso96d55b82005-10-30 15:00:07 -080039# CPU-specific tuning. Anything which can be shared with UML should go here.
40include $(srctree)/arch/i386/Makefile.cpu
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Adrian Bunk6aa4c0e2006-01-16 22:13:53 -080042cflags-$(CONFIG_REGPARM) += -mregparm=3
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Andi Kleen6edfba12006-03-25 16:29:49 +010044# temporary until string.h is fixed
45cflags-y += -ffreestanding
46
Andi Kleencdfce1f2006-10-21 18:37:01 +020047# this works around some issues with generating unwind tables in older gccs
48# newer gccs do it by default
49cflags-y += -maccumulate-outgoing-args
50
Ingo Molnar9ab34fe2006-01-14 13:21:29 -080051# Disable unit-at-a-time mode on pre-gcc-4.0 compilers, it makes gcc use
52# a lot more stack due to the lack of sharing of stacklots:
53CFLAGS += $(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 -070054
Andi Kleene2414912006-09-26 10:52:30 +020055# do binutils support CFI?
56cflags-y += $(call as-instr,.cfi_startproc\n.cfi_endproc,-DCONFIG_AS_CFI=1,)
57AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_endproc,-DCONFIG_AS_CFI=1,)
58
Jan Beulichadf14232006-09-26 10:52:41 +020059# is .cfi_signal_frame supported too?
Andrew Mortonda8604c2006-10-21 18:37:01 +020060cflags-y += $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIGNAL_FRAME=1,)
61AFLAGS += $(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 +020062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063CFLAGS += $(cflags-y)
64
65# Default subarch .c files
66mcore-y := mach-default
67
68# Voyager subarch support
69mflags-$(CONFIG_X86_VOYAGER) := -Iinclude/asm-i386/mach-voyager
70mcore-$(CONFIG_X86_VOYAGER) := mach-voyager
71
72# VISWS subarch support
73mflags-$(CONFIG_X86_VISWS) := -Iinclude/asm-i386/mach-visws
74mcore-$(CONFIG_X86_VISWS) := mach-visws
75
76# NUMAQ subarch support
77mflags-$(CONFIG_X86_NUMAQ) := -Iinclude/asm-i386/mach-numaq
78mcore-$(CONFIG_X86_NUMAQ) := mach-default
79
80# BIGSMP subarch support
81mflags-$(CONFIG_X86_BIGSMP) := -Iinclude/asm-i386/mach-bigsmp
82mcore-$(CONFIG_X86_BIGSMP) := mach-default
83
84#Summit subarch support
85mflags-$(CONFIG_X86_SUMMIT) := -Iinclude/asm-i386/mach-summit
86mcore-$(CONFIG_X86_SUMMIT) := mach-default
87
88# generic subarchitecture
89mflags-$(CONFIG_X86_GENERICARCH) := -Iinclude/asm-i386/mach-generic
90mcore-$(CONFIG_X86_GENERICARCH) := mach-default
91core-$(CONFIG_X86_GENERICARCH) += arch/i386/mach-generic/
92
93# ES7000 subarch support
94mflags-$(CONFIG_X86_ES7000) := -Iinclude/asm-i386/mach-es7000
95mcore-$(CONFIG_X86_ES7000) := mach-default
96core-$(CONFIG_X86_ES7000) := arch/i386/mach-es7000/
97
98# default subarch .h files
99mflags-y += -Iinclude/asm-i386/mach-default
100
101head-y := arch/i386/kernel/head.o arch/i386/kernel/init_task.o
102
103libs-y += arch/i386/lib/
104core-y += arch/i386/kernel/ \
105 arch/i386/mm/ \
106 arch/i386/$(mcore-y)/ \
107 arch/i386/crypto/
108drivers-$(CONFIG_MATH_EMULATION) += arch/i386/math-emu/
109drivers-$(CONFIG_PCI) += arch/i386/pci/
110# must be linked after kernel/
111drivers-$(CONFIG_OPROFILE) += arch/i386/oprofile/
112drivers-$(CONFIG_PM) += arch/i386/power/
113
114CFLAGS += $(mflags-y)
115AFLAGS += $(mflags-y)
116
117boot := arch/i386/boot
118
Paul Smith4f193362006-03-05 17:14:10 -0500119PHONY += zImage bzImage compressed zlilo bzlilo \
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800120 zdisk bzdisk fdimage fdimage144 fdimage288 isoimage install
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122all: bzImage
123
124# KBUILD_IMAGE specify target image being built
125 KBUILD_IMAGE := $(boot)/bzImage
126zImage zlilo zdisk: KBUILD_IMAGE := arch/i386/boot/zImage
127
128zImage bzImage: vmlinux
129 $(Q)$(MAKE) $(build)=$(boot) $(KBUILD_IMAGE)
130
131compressed: zImage
132
133zlilo bzlilo: vmlinux
134 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zlilo
135
136zdisk bzdisk: vmlinux
137 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zdisk
138
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800139fdimage fdimage144 fdimage288 isoimage: vmlinux
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) $@
141
H. Peter Anvin0d20bab2006-01-07 17:38:39 -0800142install:
Sam Ravnborg2cacb3d2005-04-30 16:51:42 -0700143 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145archclean:
146 $(Q)$(MAKE) $(clean)=arch/i386/boot
147
148define archhelp
149 echo '* bzImage - Compressed kernel image (arch/$(ARCH)/boot/bzImage)'
150 echo ' install - Install kernel using'
151 echo ' (your) ~/bin/installkernel or'
152 echo ' (distribution) /sbin/installkernel or'
153 echo ' install to $$(INSTALL_PATH) and run lilo'
154 echo ' bzdisk - Create a boot floppy in /dev/fd0'
155 echo ' fdimage - Create a boot floppy image'
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800156 echo ' isoimage - Create a boot CD-ROM image'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157endef
158
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800159CLEAN_FILES += arch/$(ARCH)/boot/fdimage \
160 arch/$(ARCH)/boot/image.iso \
161 arch/$(ARCH)/boot/mtools.conf