kbuild: fix up CFLAGS usage
[linux-2.6-block.git] / arch / xtensa / Makefile
CommitLineData
8e1a6dd2
CZ
1#
2# This file is subject to the terms and conditions of the GNU General Public
3# License. See the file "COPYING" in the main directory of this archive
4# for more details.
5#
6# Copyright (C) 2001 - 2005 Tensilica Inc.
7#
8# This file is included by the global makefile so that you can add your own
9# architecture-specific flags and dependencies. Remember to do have actions
10# for "archclean" and "archdep" for cleaning up and making dependencies for
11# this architecture
12
13# Core configuration.
173d6681 14# (Use VAR=<xtensa_config> to use another default compiler.)
8e1a6dd2 15
173d6681
CZ
16variant-$(CONFIG_XTENSA_VARIANT_FSF) := fsf
17variant-$(CONFIG_XTENSA_VARIANT_LINUX_CUSTOM) := custom
8e1a6dd2 18
173d6681
CZ
19VARIANT = $(variant-y)
20export VARIANT
8e1a6dd2
CZ
21
22# Platform configuration
23
8e1a6dd2
CZ
24platform-$(CONFIG_XTENSA_PLATFORM_XT2000) := xt2000
25platform-$(CONFIG_XTENSA_PLATFORM_ISS) := iss
26
27PLATFORM = $(platform-y)
28export PLATFORM
29
b2444d34
CZ
30# temporarily until string.h is fixed
31cflags-y += -ffreestanding
32
33cflags-y += -pipe -mlongcalls
34
35CFLAGS += $(cflags-y)
8e1a6dd2 36
e7d163f7 37KBUILD_DEFCONFIG := iss_defconfig
8e1a6dd2
CZ
38
39# ramdisk/initrd support
40# You need a compressed ramdisk image, named ramdisk.gz in
41# arch/xtensa/boot/ramdisk
42
43core-$(CONFIG_EMBEDDED_RAMDISK) += arch/xtensa/boot/ramdisk/
44
45# Test for cross compiling
46
173d6681 47ifneq ($(VARIANT),)
8e1a6dd2
CZ
48 COMPILE_ARCH = $(shell uname -m)
49
50 ifneq ($(COMPILE_ARCH), xtensa)
51 ifndef CROSS_COMPILE
173d6681 52 CROSS_COMPILE = xtensa_$(VARIANT)-
8e1a6dd2
CZ
53 endif
54 endif
55endif
56
57#
58
59LIBGCC := $(shell $(CC) $(CFLAGS) -print-libgcc-file-name)
60
61head-y := arch/xtensa/kernel/head.o
e7d163f7
CZ
62core-y += arch/xtensa/kernel/ arch/xtensa/mm/
63ifneq ($(PLATFORM),)
64core-y += arch/xtensa/platform-$(PLATFORM)/
65endif
8e1a6dd2
CZ
66libs-y += arch/xtensa/lib/ $(LIBGCC)
67
e7d163f7
CZ
68boot := arch/xtensa/boot
69
70archinc := include/asm-xtensa
8e1a6dd2 71
5bb78269 72archprepare: $(archinc)/.platform
8e1a6dd2 73
173d6681 74# Update processor variant and platform symlinks if something which affects
8e1a6dd2
CZ
75# them changed.
76
2e3646e5 77$(archinc)/.platform: $(wildcard include/config/arch/*.h) include/config/auto.conf
173d6681 78 @echo ' SYMLINK $(archinc)/variant -> $(archinc)/variant-$(VARIANT)'
e7d163f7 79 $(Q)mkdir -p $(archinc)
173d6681 80 $(Q)ln -fsn $(srctree)/$(archinc)/variant-$(VARIANT) $(archinc)/variant
e7d163f7
CZ
81 @echo ' SYMLINK $(archinc)/platform -> $(archinc)/platform-$(PLATFORM)'
82 $(Q)ln -fsn $(srctree)/$(archinc)/platform-$(PLATFORM) $(archinc)/platform
83 @touch $@
84
8e1a6dd2
CZ
85
86all: zImage
87
88bzImage : zImage
89
90zImage zImage.initrd: vmlinux
91 $(Q)$(MAKE) $(build)=$(boot) $@
92
0013a854 93CLEAN_FILES += arch/xtensa/vmlinux.lds \
173d6681 94 $(archinc)/platform $(archinc)/variant \
e7d163f7 95 $(archinc)/.platform
8e1a6dd2
CZ
96
97define archhelp
98 @echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)'
99endef
100