]> git.ipfire.org Git - thirdparty/u-boot.git/blob - arch/m68k/Makefile
riscv: support extension probing using riscv, isa-extensions
[thirdparty/u-boot.git] / arch / m68k / Makefile
1 # SPDX-License-Identifier: GPL-2.0+
2
3 head-y := arch/m68k/cpu/$(CPU)/start.o
4
5 libs-y += arch/m68k/cpu/$(CPU)/
6 libs-y += arch/m68k/lib/
7
8 cpuflags-$(CONFIG_M5208) := -mcpu=5208
9 cpuflags-$(CONFIG_M5235) := -mcpu=5235 -fPIC
10 cpuflags-$(CONFIG_M5249) := -mcpu=5249
11 cpuflags-$(CONFIG_M5253) := -mcpu=5253
12 cpuflags-$(CONFIG_M5271) := -mcpu=5271
13 cpuflags-$(CONFIG_M5272) := -mcpu=5272
14 cpuflags-$(CONFIG_M5275) := -mcpu=5275
15 cpuflags-$(CONFIG_M5282) := -mcpu=5282
16 cpuflags-$(CONFIG_M5307) := -mcpu=5307
17 cpuflags-$(CONFIG_MCF5301x) := -mcpu=53015 -fPIC
18 cpuflags-$(CONFIG_MCF532x) := -mcpu=5329 -fPIC
19 cpuflags-$(CONFIG_MCF5441x) := -mcpu=54418 -fPIC
20
21 PLATFORM_CPPFLAGS += $(cpuflags-y)
22
23
24 ldflags-$(CONFIG_MCF5441x) := --got=single
25
26 ifneq (,$(findstring -linux-,$(shell $(CC) --version)))
27 ifneq (,$(findstring GOT,$(shell $(LD) --help)))
28 KBUILD_LDFLAGS += $(ldflags-y)
29 endif
30 endif