i386: move power
[linux-2.6-block.git] / arch / i386 / Makefile
CommitLineData
1da177e4
LT
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#
47137419 17# 20050320 Kianusch Sayah Karadji <kianusch@sk-tech.net>
1da177e4
LT
18# Added support for GEODE CPU
19
d0e7feb0
PA
20HAS_BIARCH := $(call cc-option-yn, -m32)
21ifeq ($(HAS_BIARCH),y)
22AS := $(AS) --32
23LD := $(LD) -m elf_i386
24CC := $(CC) -m32
25endif
26
1da177e4
LT
27LDFLAGS := -m elf_i386
28OBJCOPYFLAGS := -O binary -R .note -R .comment -S
968de4f0
EB
29ifdef CONFIG_RELOCATABLE
30LDFLAGS_vmlinux := --emit-relocs
31endif
1da177e4
LT
32CHECKFLAGS += -D__i386__
33
25165120 34CFLAGS += -pipe -msoft-float -mregparm=3 -freg-struct-return
1da177e4
LT
35
36# prevent gcc from keeping the stack 16 byte aligned
b4652239 37CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2)
1da177e4 38
96d55b88
PBG
39# CPU-specific tuning. Anything which can be shared with UML should go here.
40include $(srctree)/arch/i386/Makefile.cpu
1da177e4 41
6edfba1b
AK
42# temporary until string.h is fixed
43cflags-y += -ffreestanding
44
cdfce1f5
AK
45# this works around some issues with generating unwind tables in older gccs
46# newer gccs do it by default
47cflags-y += -maccumulate-outgoing-args
48
9ab34fe7
IM
49# Disable unit-at-a-time mode on pre-gcc-4.0 compilers, it makes gcc use
50# a lot more stack due to the lack of sharing of stacklots:
51CFLAGS += $(shell if [ $(call cc-version) -lt 0400 ] ; then echo $(call cc-option,-fno-unit-at-a-time); fi ;)
1da177e4 52
e2414910 53# do binutils support CFI?
f0f12d85
AK
54cflags-y += $(call as-instr,.cfi_startproc\n.cfi_rel_offset esp${comma}0\n.cfi_endproc,-DCONFIG_AS_CFI=1,)
55AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_rel_offset esp${comma}0\n.cfi_endproc,-DCONFIG_AS_CFI=1,)
adf14236
JB
56
57# is .cfi_signal_frame supported too?
da8604cc
AM
58cflags-y += $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIGNAL_FRAME=1,)
59AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIGNAL_FRAME=1,)
e2414910 60
1da177e4
LT
61CFLAGS += $(cflags-y)
62
63# Default subarch .c files
d7394fe5 64mcore-y := arch/i386/mach-default
1da177e4
LT
65
66# Voyager subarch support
67mflags-$(CONFIG_X86_VOYAGER) := -Iinclude/asm-i386/mach-voyager
d7394fe5 68mcore-$(CONFIG_X86_VOYAGER) := arch/i386/mach-voyager
1da177e4
LT
69
70# VISWS subarch support
71mflags-$(CONFIG_X86_VISWS) := -Iinclude/asm-i386/mach-visws
d7394fe5 72mcore-$(CONFIG_X86_VISWS) := arch/i386/mach-visws
1da177e4
LT
73
74# NUMAQ subarch support
75mflags-$(CONFIG_X86_NUMAQ) := -Iinclude/asm-i386/mach-numaq
d7394fe5 76mcore-$(CONFIG_X86_NUMAQ) := arch/i386/mach-default
1da177e4
LT
77
78# BIGSMP subarch support
79mflags-$(CONFIG_X86_BIGSMP) := -Iinclude/asm-i386/mach-bigsmp
d7394fe5 80mcore-$(CONFIG_X86_BIGSMP) := arch/i386/mach-default
1da177e4
LT
81
82#Summit subarch support
83mflags-$(CONFIG_X86_SUMMIT) := -Iinclude/asm-i386/mach-summit
d7394fe5 84mcore-$(CONFIG_X86_SUMMIT) := arch/i386/mach-default
1da177e4
LT
85
86# generic subarchitecture
87mflags-$(CONFIG_X86_GENERICARCH) := -Iinclude/asm-i386/mach-generic
d7394fe5 88mcore-$(CONFIG_X86_GENERICARCH) := arch/i386/mach-default
1da177e4
LT
89core-$(CONFIG_X86_GENERICARCH) += arch/i386/mach-generic/
90
91# ES7000 subarch support
92mflags-$(CONFIG_X86_ES7000) := -Iinclude/asm-i386/mach-es7000
d7394fe5 93mcore-$(CONFIG_X86_ES7000) := arch/i386/mach-default
1da177e4
LT
94core-$(CONFIG_X86_ES7000) := arch/i386/mach-es7000/
95
5ead97c8
JF
96# Xen paravirtualization support
97core-$(CONFIG_XEN) += arch/i386/xen/
98
1da177e4
LT
99# default subarch .h files
100mflags-y += -Iinclude/asm-i386/mach-default
101
deb86771 102head-y := arch/i386/kernel/head_32.o arch/i386/kernel/init_task_32.o
1da177e4 103
44f0257f 104libs-y += arch/x86/lib/
1da177e4
LT
105core-y += arch/i386/kernel/ \
106 arch/i386/mm/ \
d7394fe5 107 $(mcore-y)/ \
9c201942 108 arch/x86/crypto/
da957e11 109drivers-$(CONFIG_MATH_EMULATION) += arch/x86/math-emu/
1da177e4
LT
110drivers-$(CONFIG_PCI) += arch/i386/pci/
111# must be linked after kernel/
112drivers-$(CONFIG_OPROFILE) += arch/i386/oprofile/
4b60eb83 113drivers-$(CONFIG_PM) += arch/x86/power/
317b3c21 114drivers-$(CONFIG_FB) += arch/i386/video/
1da177e4
LT
115
116CFLAGS += $(mflags-y)
117AFLAGS += $(mflags-y)
118
119boot := arch/i386/boot
120
4f193362 121PHONY += zImage bzImage compressed zlilo bzlilo \
841b8a46 122 zdisk bzdisk fdimage fdimage144 fdimage288 isoimage install
1da177e4
LT
123
124all: bzImage
125
126# KBUILD_IMAGE specify target image being built
127 KBUILD_IMAGE := $(boot)/bzImage
128zImage zlilo zdisk: KBUILD_IMAGE := arch/i386/boot/zImage
129
130zImage bzImage: vmlinux
131 $(Q)$(MAKE) $(build)=$(boot) $(KBUILD_IMAGE)
132
133compressed: zImage
134
135zlilo bzlilo: vmlinux
136 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zlilo
137
138zdisk bzdisk: vmlinux
139 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zdisk
140
841b8a46 141fdimage fdimage144 fdimage288 isoimage: vmlinux
1da177e4
LT
142 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) $@
143
0d20babd 144install:
2cacb3da 145 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install
1da177e4 146
1da177e4
LT
147archclean:
148 $(Q)$(MAKE) $(clean)=arch/i386/boot
149
150define archhelp
151 echo '* bzImage - Compressed kernel image (arch/$(ARCH)/boot/bzImage)'
152 echo ' install - Install kernel using'
153 echo ' (your) ~/bin/installkernel or'
154 echo ' (distribution) /sbin/installkernel or'
155 echo ' install to $$(INSTALL_PATH) and run lilo'
156 echo ' bzdisk - Create a boot floppy in /dev/fd0'
157 echo ' fdimage - Create a boot floppy image'
841b8a46 158 echo ' isoimage - Create a boot CD-ROM image'
1da177e4
LT
159endef
160
841b8a46
PA
161CLEAN_FILES += arch/$(ARCH)/boot/fdimage \
162 arch/$(ARCH)/boot/image.iso \
163 arch/$(ARCH)/boot/mtools.conf