]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/xtensa/boot/Makefile
kconfig: set title bar in xconfig
[mirror_ubuntu-zesty-kernel.git] / arch / xtensa / boot / Makefile
CommitLineData
4bedea94
CZ
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
9a39e273 11EXTRA_CFLAGS += -fno-builtin -Iarch/$(ARCH)/boot/include
4bedea94
CZ
12HOSTFLAGS += -Iarch/$(ARCH)/boot/include
13
e7d163f7 14BIG_ENDIAN := $(shell echo -e __XTENSA_EB__ | $(CC) -E - | grep -v "\#")
4bedea94 15
9a39e273 16export EXTRA_CFLAGS
4bedea94
CZ
17export BIG_ENDIAN
18
e7d163f7
CZ
19subdir-y := lib
20
4bedea94
CZ
21# Subdirs for the boot loader(s)
22
23bootdir-$(CONFIG_XTENSA_PLATFORM_ISS) += boot-elf
24bootdir-$(CONFIG_XTENSA_PLATFORM_XT2000) += boot-redboot boot-elf
25
4bedea94
CZ
26
27zImage 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