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