http://downloads.netgear.com/files/GPL/GPL_Source_V361j_DM111PSP_series_consumer_rele...
[bcm963xx.git] / kernel / linux / arch / alpha / Makefile
1 #
2 # alpha/Makefile
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 #
10
11 NM := $(NM) -B
12
13 LDFLAGS_vmlinux := -static -N #-relax
14 CHECK           := $(CHECK) -D__alpha__=1
15 cflags-y        := -pipe -mno-fp-regs -ffixed-8
16
17 # Determine if we can use the BWX instructions with GAS.
18 old_gas := $(shell if $(AS) --version 2>&1 | grep 'version 2.7' > /dev/null; then echo y; else echo n; fi)
19
20 ifeq ($(old_gas),y)
21 $(error The assembler '$(AS)' does not support the BWX instruction)
22 endif
23
24 # Determine if GCC understands the -mcpu= option.
25 have_mcpu := $(shell if $(CC) -mcpu=ev5 -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo y; else echo n; fi)
26
27 have_mcpu_pca56 := $(shell if $(CC) -mcpu=pca56 -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo y; else echo n; fi)
28
29 have_mcpu_ev6 := $(shell if $(CC) -mcpu=ev6 -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo y; else echo n; fi)
30
31 have_mcpu_ev67 := $(shell if $(CC) -mcpu=ev67 -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo y; else echo n; fi)
32
33 have_msmall_data := $(shell if $(CC) -msmall-data -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo y; else echo n; fi)
34
35 cflags-$(have_msmall_data) += -msmall-data
36
37 # Turn on the proper cpu optimizations.
38 ifeq ($(have_mcpu),y)
39   mcpu_done := n
40   # If GENERIC, make sure to turn off any instruction set extensions that
41   # the host compiler might have on by default.  Given that EV4 and EV5
42   # have the same instruction set, prefer EV5 because an EV5 schedule is
43   # more likely to keep an EV4 processor busy than vice-versa.
44   ifeq ($(CONFIG_ALPHA_GENERIC),y)
45     mcpu := ev5
46     mcpu_done := y
47   endif
48   ifeq ($(mcpu_done)$(CONFIG_ALPHA_SX164)$(have_mcpu_pca56),nyy)
49     mcpu := pca56
50     mcpu_done := y
51   endif
52   ifeq ($(mcpu_done)$(CONFIG_ALPHA_POLARIS)$(have_mcpu_pca56),nyy)
53     mcpu := pca56
54     mcpu_done := y
55   endif
56   ifeq ($(mcpu_done)$(CONFIG_ALPHA_EV4),ny)
57     mcpu := ev4
58     mcpu_done := y
59   endif
60   ifeq ($(mcpu_done)$(CONFIG_ALPHA_EV56),ny)
61     mcpu := ev56
62     mcpu_done := y
63   endif
64   ifeq ($(mcpu_done)$(CONFIG_ALPHA_EV5),ny)
65     mcpu := ev5
66     mcpu_done := y
67   endif
68   ifeq ($(mcpu_done)$(CONFIG_ALPHA_EV67)$(have_mcpu_ev67),nyy)
69     mcpu := ev67
70     mcpu_done := y
71   endif
72   ifeq ($(mcpu_done)$(CONFIG_ALPHA_EV6),ny)
73     ifeq ($(have_mcpu_ev6),y)
74       mcpu := ev6
75     else
76       ifeq ($(have_mcpu_pca56),y)
77         mcpu := pca56
78       else
79         mcpu=ev56
80       endif
81     endif
82     mcpu_done := y
83   endif
84   cflags-$(mcpu_done) += -mcpu=$(mcpu)
85 endif
86
87
88 # For TSUNAMI, we must have the assembler not emulate our instructions.
89 # The same is true for IRONGATE, POLARIS, PYXIS.
90 # BWX is most important, but we don't really want any emulation ever.
91 CFLAGS += $(cflags-y) -Wa,-mev6
92
93 head-y := arch/alpha/kernel/head.o
94
95 core-y                          += arch/alpha/kernel/ arch/alpha/mm/
96 core-$(CONFIG_MATHEMU)          += arch/alpha/math-emu/
97 drivers-$(CONFIG_OPROFILE)      += arch/alpha/oprofile/
98 libs-y                          += arch/alpha/lib/
99
100 # export what is needed by arch/alpha/boot/Makefile
101 LIBS_Y := $(patsubst %/, %/lib.a, $(libs-y))
102 export LIBS_Y
103
104 boot := arch/alpha/boot
105
106 #Default target when executing make with no arguments
107 all boot: $(boot)/vmlinux.gz
108
109 $(boot)/vmlinux.gz: vmlinux
110         $(Q)$(MAKE) $(build)=$(boot) $@
111
112 bootimage bootpfile bootpzfile: vmlinux
113         $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
114
115
116 prepare: include/asm-$(ARCH)/asm_offsets.h
117
118 arch/$(ARCH)/kernel/asm-offsets.s: include/asm include/linux/version.h \
119                                    include/config/MARKER
120
121 include/asm-$(ARCH)/asm_offsets.h: arch/$(ARCH)/kernel/asm-offsets.s
122         $(call filechk,gen-asm-offsets)
123
124 archclean:
125         $(Q)$(MAKE) $(clean)=$(boot)
126
127 CLEAN_FILES += include/asm-$(ARCH)/asm_offsets.h
128
129 define archhelp
130   echo '* boot          - Compressed kernel image (arch/alpha/boot/vmlinux.gz)'
131   echo '  bootimage     - SRM bootable image (arch/alpha/boot/bootimage)'
132   echo '  bootpfile     - BOOTP bootable image (arch/alpha/boot/bootpfile)'
133   echo '  bootpzfile    - compressed kernel BOOTP image (arch/alpha/boot/bootpzfile)'
134 endef