]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/mips/Makefile
mips: Fix compiler warning in cpu.c
[people/ms/u-boot.git] / arch / mips / Makefile
CommitLineData
e19db555
DS
1#
2# SPDX-License-Identifier: GPL-2.0+
3#
4
eef88dfb 5head-y := arch/mips/cpu/start.o
e19db555 6
eef88dfb 7libs-y += arch/mips/cpu/
e19db555 8libs-y += arch/mips/lib/
d9a4a622 9
6479b691 10machine-$(CONFIG_SOC_AU1X00) += au1x00
1d3d0f1f 11machine-$(CONFIG_ARCH_ATH79) += ath79
32c1a6ee 12machine-$(CONFIG_MACH_PIC32) += pic32
6479b691
DS
13
14machdirs := $(patsubst %,arch/mips/mach-%/,$(machine-y))
15libs-y += $(machdirs)
16
17PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
0315a289
DS
18
19# Optimize for MIPS architectures
20arch-$(CONFIG_CPU_MIPS32_R1) += -march=mips32 -Wa,-mips32
21arch-$(CONFIG_CPU_MIPS32_R2) += -march=mips32r2 -Wa,-mips32r2
22arch-$(CONFIG_CPU_MIPS64_R1) += -march=mips64 -Wa,-mips64
23arch-$(CONFIG_CPU_MIPS64_R2) += -march=mips64r2 -Wa,-mips64r2
24
25# Allow extra optimization for specific CPUs/SoCs
26tune-$(CONFIG_MIPS_TUNE_4KC) += -mtune=4kc
27tune-$(CONFIG_MIPS_TUNE_14KC) += -mtune=14kc
28tune-$(CONFIG_MIPS_TUNE_24KC) += -mtune=24kc
29
23ff8633
DS
30# Include default header files
31cflags-y += -I$(srctree)/arch/mips/include/asm/mach-generic
32
33PLATFORM_CPPFLAGS += $(arch-y) $(tune-y) $(cflags-y)