vserver 1.9.5.x5
[linux-2.6.git] / arch / ppc / Makefile
1 # This file is included by the global makefile so that you can add your own
2 # architecture-specific flags and dependencies.
3 #
4 # This file is subject to the terms and conditions of the GNU General Public
5 # License.  See the file "COPYING" in the main directory of this archive
6 # for more details.
7 #
8 # Copyright (C) 1994 by Linus Torvalds
9 # Changes for PPC by Gary Thomas
10 # Rewritten by Cort Dougan and Paul Mackerras
11 #
12
13 # This must match PAGE_OFFSET in include/asm-ppc/page.h.
14 KERNELLOAD      := $(CONFIG_KERNEL_START)
15
16 HAS_BIARCH      := $(call cc-option-yn, -m32)
17 ifeq ($(HAS_BIARCH),y)
18 AS              := $(AS) -a32
19 LD              := $(LD) -m elf32ppc
20 CC              := $(CC) -m32
21 endif
22
23 LDFLAGS_vmlinux := -Ttext $(KERNELLOAD) -Bstatic
24 CPPFLAGS        += -Iarch/$(ARCH)
25 AFLAGS          += -Iarch/$(ARCH)
26 CFLAGS          += -Iarch/$(ARCH) -msoft-float -pipe \
27                 -ffixed-r2 -mmultiple
28 CPP             = $(CC) -E $(CFLAGS)
29
30 CHECKFLAGS      += -D__powerpc__
31
32 ifndef CONFIG_E500
33 CFLAGS          += -mstring
34 endif
35
36 cpu-as-$(CONFIG_PPC64BRIDGE)    += -Wa,-mppc64bridge
37 cpu-as-$(CONFIG_4xx)            += -Wa,-m405
38 cpu-as-$(CONFIG_6xx)            += -Wa,-maltivec
39 cpu-as-$(CONFIG_POWER4)         += -Wa,-maltivec
40 cpu-as-$(CONFIG_E500)           += -Wa,-me500
41
42 AFLAGS += $(cpu-as-y)
43 CFLAGS += $(cpu-as-y)
44
45 # Default to the common case.
46 KBUILD_DEFCONFIG := common_defconfig
47
48 head-y                          := arch/ppc/kernel/head.o
49 head-$(CONFIG_8xx)              := arch/ppc/kernel/head_8xx.o
50 head-$(CONFIG_4xx)              := arch/ppc/kernel/head_4xx.o
51 head-$(CONFIG_44x)              := arch/ppc/kernel/head_44x.o
52 head-$(CONFIG_E500)             := arch/ppc/kernel/head_e500.o
53
54 head-$(CONFIG_6xx)              += arch/ppc/kernel/idle_6xx.o
55 head-$(CONFIG_POWER4)           += arch/ppc/kernel/idle_power4.o
56
57 core-y                          += arch/ppc/kernel/ arch/ppc/platforms/ \
58                                    arch/ppc/mm/ arch/ppc/lib/ arch/ppc/syslib/
59 core-$(CONFIG_4xx)              += arch/ppc/platforms/4xx/
60 core-$(CONFIG_85xx)             += arch/ppc/platforms/85xx/
61 core-$(CONFIG_MATH_EMULATION)   += arch/ppc/math-emu/
62 core-$(CONFIG_XMON)             += arch/ppc/xmon/
63 core-$(CONFIG_APUS)             += arch/ppc/amiga/
64 drivers-$(CONFIG_8xx)           += arch/ppc/8xx_io/
65 drivers-$(CONFIG_4xx)           += arch/ppc/4xx_io/
66 drivers-$(CONFIG_CPM2)          += arch/ppc/8260_io/
67
68 drivers-$(CONFIG_OPROFILE)      += arch/ppc/oprofile/
69
70 BOOT_TARGETS = zImage zImage.initrd znetboot znetboot.initrd vmlinux.sm
71
72 .PHONY: $(BOOT_TARGETS)
73
74 all: uImage zImage
75
76 CPPFLAGS_vmlinux.lds    := -Upowerpc
77
78 # All the instructions talk about "make bzImage".
79 bzImage: zImage
80
81 boot := arch/$(ARCH)/boot
82
83 $(BOOT_TARGETS): vmlinux
84         $(Q)$(MAKE) $(build)=$(boot) $@
85
86 uImage: vmlinux
87         $(Q)$(MAKE) $(build)=$(boot)/images $(boot)/images/$@
88
89 define archhelp
90   @echo '* zImage          - Compressed kernel image (arch/$(ARCH)/boot/images/zImage.*)'
91   @echo '  uImage          - Create a bootable image for U-Boot / PPCBoot'
92   @echo '  install         - Install kernel using'
93   @echo '                    (your) ~/bin/installkernel or'
94   @echo '                    (distribution) /sbin/installkernel or'
95   @echo '                    install to $$(INSTALL_PATH) and run lilo'
96   @echo '  *_defconfig     - Select default config from arch/$(ARCH)/ppc/configs'
97 endef
98
99 archclean:
100         $(Q)$(MAKE) $(clean)=arch/ppc/boot
101
102 prepare: include/asm-$(ARCH)/offsets.h checkbin
103
104 arch/$(ARCH)/kernel/asm-offsets.s: include/asm include/linux/version.h \
105                                    include/config/MARKER
106
107 include/asm-$(ARCH)/offsets.h: arch/$(ARCH)/kernel/asm-offsets.s
108         $(call filechk,gen-asm-offsets)
109
110 # Use the file '.tmp_gas_check' for binutils tests, as gas won't output
111 # to stdout and these checks are run even on install targets.
112 TOUT    := .tmp_gas_check
113 # Ensure this is binutils 2.12.1 (or 2.12.90.0.7) or later for altivec
114 # instructions.
115 AS_ALTIVEC      := $(shell echo dssall | $(AS) -many -o $(TOUT) >/dev/null 2>&1 ; echo $$?)
116 # gcc-3.4 and binutils-2.14 are a fatal combination.
117 GCC_VERSION     := $(call cc-version)
118 BAD_GCC_AS      := $(shell echo mftb 5 | $(AS) -mppc -many -o $(TOUT) >/dev/null 2>&1 && echo 0 || echo 1)
119
120 checkbin:
121 ifeq ($(GCC_VERSION)$(BAD_GCC_AS),03041)
122         @echo -n '*** ${VERSION}.${PATCHLEVEL} kernels no longer build '
123         @echo 'correctly with gcc-3.4 and your version of binutils.'
124         @echo '*** Please upgrade your binutils or downgrade your gcc'
125         @false
126 endif
127 ifneq ($(AS_ALTIVEC),0)
128         echo $(AS_ALTIVEC)
129         @echo -n '*** ${VERSION}.${PATCHLEVEL} kernels no longer build '
130         @echo 'correctly with old versions of binutils.'
131         @echo '*** Please upgrade your binutils to 2.12.1 or newer'
132         @false
133 endif
134         @true
135
136 CLEAN_FILES +=  include/asm-$(ARCH)/offsets.h \
137                 arch/$(ARCH)/kernel/asm-offsets.s \
138                 $(TOUT)
139