mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 06:30:39 +00:00
6479b691d7
Refactor machine setup like it is done on ARM. While on it, also support "include <mach/file.h" for machine specific header files. Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
15 lines
314 B
Makefile
15 lines
314 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
head-y := arch/mips/cpu/start.o
|
|
|
|
libs-y += arch/mips/cpu/
|
|
libs-y += arch/mips/lib/
|
|
|
|
machine-$(CONFIG_SOC_AU1X00) += au1x00
|
|
|
|
machdirs := $(patsubst %,arch/mips/mach-%/,$(machine-y))
|
|
libs-y += $(machdirs)
|
|
|
|
PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
|