Makefile (b7f8f259896f669f131713b0c74ba4d008daa71d) | Makefile (6f4eea90465ad0cd5f3d041b9b2c728426f2b8d4) |
---|---|
1# This file is included by the global makefile so that you can add your own 2# architecture-specific flags and dependencies. Remember to do have actions 3# for "archclean" and "archdep" for cleaning up and making dependencies for 4# this architecture 5# 6# This file is subject to the terms and conditions of the GNU General Public 7# License. See the file "COPYING" in the main directory of this archive 8# for more details. --- 73 unchanged lines hidden (view full) --- 82 83# Default target when executing plain make 84boot := arch/riscv/boot 85KBUILD_IMAGE := $(boot)/Image.gz 86 87head-y := arch/riscv/kernel/head.o 88 89core-y += arch/riscv/ | 1# This file is included by the global makefile so that you can add your own 2# architecture-specific flags and dependencies. Remember to do have actions 3# for "archclean" and "archdep" for cleaning up and making dependencies for 4# this architecture 5# 6# This file is subject to the terms and conditions of the GNU General Public 7# License. See the file "COPYING" in the main directory of this archive 8# for more details. --- 73 unchanged lines hidden (view full) --- 82 83# Default target when executing plain make 84boot := arch/riscv/boot 85KBUILD_IMAGE := $(boot)/Image.gz 86 87head-y := arch/riscv/kernel/head.o 88 89core-y += arch/riscv/ |
90core-$(CONFIG_RISCV_ERRATA_ALTERNATIVE) += arch/riscv/errata/ |
|
90 91libs-y += arch/riscv/lib/ 92libs-$(CONFIG_EFI_STUB) += $(objtree)/drivers/firmware/efi/libstub/lib.a 93 94PHONY += vdso_install 95vdso_install: 96 $(Q)$(MAKE) $(build)=arch/riscv/kernel/vdso $@ 97 --- 21 unchanged lines hidden --- | 91 92libs-y += arch/riscv/lib/ 93libs-$(CONFIG_EFI_STUB) += $(objtree)/drivers/firmware/efi/libstub/lib.a 94 95PHONY += vdso_install 96vdso_install: 97 $(Q)$(MAKE) $(build)=arch/riscv/kernel/vdso $@ 98 --- 21 unchanged lines hidden --- |