Makefile (dd1033e4e0254bd2d19debe433921d9a71bdf674) Makefile (cd71b1d5d26dfff15222f5df8a5a6df68fc41df7)
1# SPDX-License-Identifier: GPL-2.0+
2
3head-y := arch/mips/cpu/start.o
4
5ifeq ($(CONFIG_SPL_BUILD),y)
6ifneq ($(CONFIG_SPL_START_S_PATH),)
7head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o
8endif
9endif
10
11libs-y += arch/mips/cpu/
12libs-y += arch/mips/lib/
13
14machine-$(CONFIG_ARCH_ATH79) += ath79
15machine-$(CONFIG_ARCH_BMIPS) += bmips
1# SPDX-License-Identifier: GPL-2.0+
2
3head-y := arch/mips/cpu/start.o
4
5ifeq ($(CONFIG_SPL_BUILD),y)
6ifneq ($(CONFIG_SPL_START_S_PATH),)
7head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o
8endif
9endif
10
11libs-y += arch/mips/cpu/
12libs-y += arch/mips/lib/
13
14machine-$(CONFIG_ARCH_ATH79) += ath79
15machine-$(CONFIG_ARCH_BMIPS) += bmips
16machine-$(CONFIG_ARCH_JZ47XX) += jz47xx
16machine-$(CONFIG_MACH_PIC32) += pic32
17machine-$(CONFIG_ARCH_MT7620) += mt7620
18machine-$(CONFIG_ARCH_MSCC) += mscc
19
20machdirs := $(patsubst %,arch/mips/mach-%/,$(machine-y))
21libs-y += $(machdirs)
22
23PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))

--- 20 unchanged lines hidden ---
17machine-$(CONFIG_MACH_PIC32) += pic32
18machine-$(CONFIG_ARCH_MT7620) += mt7620
19machine-$(CONFIG_ARCH_MSCC) += mscc
20
21machdirs := $(patsubst %,arch/mips/mach-%/,$(machine-y))
22libs-y += $(machdirs)
23
24PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))

--- 20 unchanged lines hidden ---