Merge branch 'xen-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen
[pandora-kernel.git] / arch / xtensa / boot / Makefile
1 #
2 # arch/xtensa/boot/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 #
9
10
11 EXTRA_CFLAGS    += -fno-builtin -Iarch/$(ARCH)/boot/include
12 HOSTFLAGS       += -Iarch/$(ARCH)/boot/include
13
14 BIG_ENDIAN      := $(shell echo -e __XTENSA_EB__ | $(CC) -E - | grep -v "\#")
15
16 export EXTRA_CFLAGS
17 export BIG_ENDIAN
18
19 subdir-y        := lib
20
21 # Subdirs for the boot loader(s)
22
23 bootdir-$(CONFIG_XTENSA_PLATFORM_ISS)    += boot-elf
24 bootdir-$(CONFIG_XTENSA_PLATFORM_XT2000) += boot-redboot boot-elf
25
26
27 zImage zImage.initrd Image Image.initrd: $(bootdir-y)
28
29 $(bootdir-y): $(addprefix $(obj)/,$(subdir-y)) \
30               $(addprefix $(obj)/,$(host-progs))
31         $(Q)$(MAKE) $(build)=$(obj)/$@ $(MAKECMDGOALS)
32