This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / arch / ppc64 / Makefile
1 # This file is included by the global makefile so that you can add your own
2 # architecture-specific flags and dependencies. Remember to do have actions
3 # for "archclean" and "archdep" for cleaning up and making dependencies for
4 # this architecture
5 #
6 # This file is subject to the terms and conditions of the GNU General Public
7 # License.  See the file "COPYING" in the main directory of this archive
8 # for more details.
9 #
10 # Copyright (C) 1994 by Linus Torvalds
11 # Changes for PPC by Gary Thomas
12 # Rewritten by Cort Dougan and Paul Mackerras
13 # Adjusted for PPC64 by Tom Gall
14 #
15
16 KERNELLOAD      := 0xc000000000000000
17
18 HAS_BIARCH      := $(call cc-option-yn, -m64)
19 ifeq ($(HAS_BIARCH),y)
20 AS              := $(AS) -a64
21 LD              := $(LD) -m elf64ppc
22 CC              := $(CC) -m64
23 endif
24
25 new_nm := $(shell if $(NM) --help 2>&1 | grep -- '--synthetic' > /dev/null; then echo y; else echo n; fi)
26
27 ifeq ($(new_nm),y)
28 NM              := $(NM) --synthetic
29 endif
30
31 CHECKFLAGS      += -m64 -D__powerpc__
32
33 LDFLAGS         := -m elf64ppc
34 LDFLAGS_vmlinux := -Bstatic -e $(KERNELLOAD) -Ttext $(KERNELLOAD)
35 CFLAGS          += -msoft-float -pipe -mminimal-toc -mtraceback=none
36                    
37 CFLAGS += $(call cc-option,-mcall-aixdesc)                 
38
39 ifeq ($(CONFIG_POWER4_ONLY),y)
40         CFLAGS += $(call cc-option,-mcpu=power4)
41 else
42         CFLAGS += $(call cc-option,-mtune=power4)
43 endif
44
45 # Enable unit-at-a-time mode when possible. It shrinks the
46 # kernel considerably.
47 CFLAGS += $(call cc-option,-fno-unit-at-a-time)
48
49 head-y := arch/ppc64/kernel/head.o
50
51 libs-y                          += arch/ppc64/lib/
52 core-y                          += arch/ppc64/kernel/
53 core-y                          += arch/ppc64/mm/
54 core-$(CONFIG_XMON)             += arch/ppc64/xmon/
55 drivers-$(CONFIG_OPROFILE)      += arch/ppc64/oprofile/
56
57 boot := arch/ppc64/boot
58 bzImage: vmlinux
59         cp vmlinux arch/ppc64/boot/bzImage
60
61 boottarget-$(CONFIG_PPC_PSERIES) := zImage zImage.initrd zImage.stub
62 boottarget-$(CONFIG_PPC_ISERIES) := vmlinux.sminitrd vmlinux.initrd vmlinux.sm
63 $(boottarget-y): vmlinux
64         $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
65
66 bootimage-$(CONFIG_PPC_PSERIES) := zImage
67 bootimage-$(CONFIG_PPC_ISERIES) := vmlinux
68 BOOTIMAGE := $(bootimage-y)
69 install: vmlinux
70         $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(BOOTIMAGE) $@
71
72 all: $(BOOTIMAGE)
73
74 archclean:
75         $(Q)$(MAKE) $(clean)=$(boot)
76
77 prepare: include/asm-ppc64/offsets.h
78
79 arch/ppc64/kernel/asm-offsets.s: include/asm include/linux/version.h \
80                                    include/config/MARKER
81
82 include/asm-ppc64/offsets.h: arch/ppc64/kernel/asm-offsets.s
83         $(call filechk,gen-asm-offsets)
84
85 define archhelp
86   echo  '* zImage       - Compressed kernel image (arch/$(ARCH)/boot/zImage)'
87   echo  '  zImage.initrd- Compressed kernel image with initrd attached,'
88   echo  '                  sourced from arch/$(ARCH)/boot/ramdisk.image.gz'
89   echo  '                  (arch/$(ARCH)/boot/zImage.initrd)'
90 endef
91
92 CLEAN_FILES += include/asm-ppc64/offsets.h