Makefile (e29371d762df5bb35d2bc434ea266a046e5a0a75) | Makefile (2a02bc166dd1c7dae71bd3115fb10ec0c351a31f) |
---|---|
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 --- 74 unchanged lines hidden (view full) --- 83 84head-y := arch/xtensa/kernel/head.o 85core-y += arch/xtensa/kernel/ arch/xtensa/mm/ 86core-y += $(buildvar) $(buildplf) 87 88libs-y += arch/xtensa/lib/ $(LIBGCC) 89 90ifneq ($(CONFIG_BUILTIN_DTB),"") | 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 --- 74 unchanged lines hidden (view full) --- 83 84head-y := arch/xtensa/kernel/head.o 85core-y += arch/xtensa/kernel/ arch/xtensa/mm/ 86core-y += $(buildvar) $(buildplf) 87 88libs-y += arch/xtensa/lib/ $(LIBGCC) 89 90ifneq ($(CONFIG_BUILTIN_DTB),"") |
91core-$(CONFIG_OF) += arch/xtensa/boot/ | 91core-$(CONFIG_OF) += arch/xtensa/boot/dts/ |
92endif 93 94boot := arch/xtensa/boot 95 96all: zImage 97 98bzImage : zImage 99 100zImage: vmlinux 101 $(Q)$(MAKE) $(build)=$(boot) $@ 102 103%.dtb: | 92endif 93 94boot := arch/xtensa/boot 95 96all: zImage 97 98bzImage : zImage 99 100zImage: vmlinux 101 $(Q)$(MAKE) $(build)=$(boot) $@ 102 103%.dtb: |
104 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ | 104 $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@ |
105 106define archhelp 107 @echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)' 108endef | 105 106define archhelp 107 @echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)' 108endef |