aboutsummaryrefslogtreecommitdiffstats
path: root/arch/i386/Makefile
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2007-10-25 13:42:04 -0400
committerSam Ravnborg <sam@ravnborg.org>2007-10-25 16:27:34 -0400
commit74b469f2e6b1589118b6ac05c7256add01e572d2 (patch)
treed963009bef4f36ae610dd56ca69961e0de9ee29c /arch/i386/Makefile
parentc9927c2bf4f45bb85e8b502ab3fb79ad6483c244 (diff)
x86: move i386 and x86_64 Makefiles to arch/x86
Moving the ARCH specific Makefiles for i386 and x86_64 required a litle bit tweaking in the top-lvel Makefile. SRCARCH is now set in the top-level Makefile because we need this info to include the correct arch Makefile. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'arch/i386/Makefile')
-rw-r--r--arch/i386/Makefile178
1 files changed, 0 insertions, 178 deletions
diff --git a/arch/i386/Makefile b/arch/i386/Makefile
deleted file mode 100644
index f5b9a37def8b..000000000000
--- a/arch/i386/Makefile
+++ /dev/null
@@ -1,178 +0,0 @@
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
20# Fill in SRCARCH
21SRCARCH := x86
22
23# BITS is used as extension for files which are available in a 32 bit
24# and a 64 bit version to simplify shared Makefiles.
25# e.g.: obj-y += foo_$(BITS).o
26BITS := 32
27export BITS
28
29HAS_BIARCH := $(call cc-option-yn, -m32)
30ifeq ($(HAS_BIARCH),y)
31AS := $(AS) --32
32LD := $(LD) -m elf_i386
33CC := $(CC) -m32
34endif
35
36LDFLAGS := -m elf_i386
37OBJCOPYFLAGS := -O binary -R .note -R .comment -S
38ifdef CONFIG_RELOCATABLE
39LDFLAGS_vmlinux := --emit-relocs
40endif
41CHECKFLAGS += -D__i386__
42
43KBUILD_CFLAGS += -pipe -msoft-float -mregparm=3 -freg-struct-return
44
45# prevent gcc from keeping the stack 16 byte aligned
46KBUILD_CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2)
47
48# CPU-specific tuning. Anything which can be shared with UML should go here.
49include $(srctree)/arch/i386/Makefile.cpu
50
51# temporary until string.h is fixed
52cflags-y += -ffreestanding
53
54# this works around some issues with generating unwind tables in older gccs
55# newer gccs do it by default
56cflags-y += -maccumulate-outgoing-args
57
58# Disable unit-at-a-time mode on pre-gcc-4.0 compilers, it makes gcc use
59# a lot more stack due to the lack of sharing of stacklots:
60KBUILD_CFLAGS += $(shell if [ $(call cc-version) -lt 0400 ] ; then echo $(call cc-option,-fno-unit-at-a-time); fi ;)
61
62# do binutils support CFI?
63cflags-y += $(call as-instr,.cfi_startproc\n.cfi_rel_offset esp${comma}0\n.cfi_endproc,-DCONFIG_AS_CFI=1,)
64KBUILD_AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_rel_offset esp${comma}0\n.cfi_endproc,-DCONFIG_AS_CFI=1,)
65
66# is .cfi_signal_frame supported too?
67cflags-y += $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIGNAL_FRAME=1,)
68KBUILD_AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIGNAL_FRAME=1,)
69
70KBUILD_CFLAGS += $(cflags-y)
71
72# Default subarch .c files
73mcore-y := arch/x86/mach-default
74
75# Voyager subarch support
76mflags-$(CONFIG_X86_VOYAGER) := -Iinclude/asm-x86/mach-voyager
77mcore-$(CONFIG_X86_VOYAGER) := arch/x86/mach-voyager
78
79# VISWS subarch support
80mflags-$(CONFIG_X86_VISWS) := -Iinclude/asm-x86/mach-visws
81mcore-$(CONFIG_X86_VISWS) := arch/x86/mach-visws
82
83# NUMAQ subarch support
84mflags-$(CONFIG_X86_NUMAQ) := -Iinclude/asm-x86/mach-numaq
85mcore-$(CONFIG_X86_NUMAQ) := arch/x86/mach-default
86
87# BIGSMP subarch support
88mflags-$(CONFIG_X86_BIGSMP) := -Iinclude/asm-x86/mach-bigsmp
89mcore-$(CONFIG_X86_BIGSMP) := arch/x86/mach-default
90
91#Summit subarch support
92mflags-$(CONFIG_X86_SUMMIT) := -Iinclude/asm-x86/mach-summit
93mcore-$(CONFIG_X86_SUMMIT) := arch/x86/mach-default
94
95# generic subarchitecture
96mflags-$(CONFIG_X86_GENERICARCH) := -Iinclude/asm-x86/mach-generic
97mcore-$(CONFIG_X86_GENERICARCH) := arch/x86/mach-default
98core-$(CONFIG_X86_GENERICARCH) += arch/x86/mach-generic/
99
100# ES7000 subarch support
101mflags-$(CONFIG_X86_ES7000) := -Iinclude/asm-x86/mach-es7000
102mcore-$(CONFIG_X86_ES7000) := arch/x86/mach-default
103core-$(CONFIG_X86_ES7000) := arch/x86/mach-es7000/
104
105# Xen paravirtualization support
106core-$(CONFIG_XEN) += arch/x86/xen/
107
108# lguest paravirtualization support
109core-$(CONFIG_LGUEST_GUEST) += arch/x86/lguest/
110
111# default subarch .h files
112mflags-y += -Iinclude/asm-x86/mach-default
113
114head-y := arch/x86/kernel/head_32.o arch/x86/kernel/init_task.o
115
116libs-y += arch/x86/lib/
117core-y += arch/x86/kernel/ \
118 arch/x86/mm/ \
119 $(mcore-y)/ \
120 arch/x86/crypto/
121drivers-$(CONFIG_MATH_EMULATION) += arch/x86/math-emu/
122drivers-$(CONFIG_PCI) += arch/x86/pci/
123# must be linked after kernel/
124drivers-$(CONFIG_OPROFILE) += arch/x86/oprofile/
125drivers-$(CONFIG_PM) += arch/x86/power/
126drivers-$(CONFIG_FB) += arch/x86/video/
127
128KBUILD_CFLAGS += $(mflags-y)
129KBUILD_AFLAGS += $(mflags-y)
130
131boot := arch/x86/boot
132
133PHONY += zImage bzImage compressed zlilo bzlilo \
134 zdisk bzdisk fdimage fdimage144 fdimage288 isoimage install
135
136all: bzImage
137
138# KBUILD_IMAGE specify target image being built
139 KBUILD_IMAGE := $(boot)/bzImage
140zImage zlilo zdisk: KBUILD_IMAGE := arch/x86/boot/zImage
141
142zImage bzImage: vmlinux
143 $(Q)$(MAKE) $(build)=$(boot) $(KBUILD_IMAGE)
144 $(Q)mkdir -p $(objtree)/arch/i386/boot
145 $(Q)ln -fsn ../../x86/boot/bzImage $(objtree)/arch/i386/boot/bzImage
146
147compressed: zImage
148
149zlilo bzlilo: vmlinux
150 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zlilo
151
152zdisk bzdisk: vmlinux
153 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zdisk
154
155fdimage fdimage144 fdimage288 isoimage: vmlinux
156 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) $@
157
158install:
159 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install
160
161archclean:
162 $(Q)rm -rf $(objtree)/arch/i386/boot
163 $(Q)$(MAKE) $(clean)=arch/x86/boot
164
165define archhelp
166 echo '* bzImage - Compressed kernel image (arch/$(ARCH)/boot/bzImage)'
167 echo ' install - Install kernel using'
168 echo ' (your) ~/bin/installkernel or'
169 echo ' (distribution) /sbin/installkernel or'
170 echo ' install to $$(INSTALL_PATH) and run lilo'
171 echo ' bzdisk - Create a boot floppy in /dev/fd0'
172 echo ' fdimage - Create a boot floppy image'
173 echo ' isoimage - Create a boot CD-ROM image'
174endef
175
176CLEAN_FILES += arch/$(ARCH)/boot/fdimage \
177 arch/$(ARCH)/boot/image.iso \
178 arch/$(ARCH)/boot/mtools.conf