Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v4.17 63 lines 1.6 kB view raw
1# 2# linux/arch/c6x/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 9KBUILD_DEFCONFIG := dsk6455_defconfig 10 11cflags-y += -mno-dsbt -msdata=none -D__linux__ 12 13cflags-$(CONFIG_C6X_BIG_KERNEL) += -mlong-calls 14 15KBUILD_CFLAGS_MODULE += -mlong-calls -mno-dsbt -msdata=none 16 17CHECKFLAGS += 18 19KBUILD_CFLAGS += $(cflags-y) 20KBUILD_AFLAGS += $(cflags-y) 21 22ifdef CONFIG_CPU_BIG_ENDIAN 23KBUILD_CFLAGS += -mbig-endian 24KBUILD_AFLAGS += -mbig-endian 25LINKFLAGS += -mbig-endian 26KBUILD_LDFLAGS += -mbig-endian 27LDFLAGS += -EB 28CHECKFLAGS += -D_BIG_ENDIAN 29endif 30 31head-y := arch/c6x/kernel/head.o 32core-y += arch/c6x/kernel/ arch/c6x/mm/ arch/c6x/platforms/ 33libs-y += arch/c6x/lib/ 34 35# Default to vmlinux.bin, override when needed 36all: vmlinux.bin 37 38boot := arch/$(ARCH)/boot 39 40# Are we making a dtbImage.<boardname> target? If so, crack out the boardname 41DTB:=$(subst dtbImage.,,$(filter dtbImage.%, $(MAKECMDGOALS))) 42export DTB 43 44ifneq ($(DTB),) 45core-y += $(boot)/dts/ 46endif 47 48# With make 3.82 we cannot mix normal and wildcard targets 49 50vmlinux.bin: vmlinux 51 $(Q)$(MAKE) $(build)=$(boot) $(patsubst %,$(boot)/%,$@) 52 53dtbImage.%: vmlinux 54 $(Q)$(MAKE) $(build)=$(boot) $(patsubst %,$(boot)/%,$@) 55 56archclean: 57 $(Q)$(MAKE) $(clean)=$(boot) 58 59define archhelp 60 @echo ' vmlinux.bin - Binary kernel image (arch/$(ARCH)/boot/vmlinux.bin)' 61 @echo ' dtbImage.<dt> - ELF image with $(arch)/boot/dts/<dt>.dts linked in' 62 @echo ' - stripped elf with fdt blob' 63endef