blob: 63f18109a577db4194a9cd5fee603fdd706553ec [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Daniel Schwierzecke19db552014-11-21 23:51:33 +01002
3head-y := arch/m68k/cpu/$(CPU)/start.o
4
5libs-y += arch/m68k/cpu/$(CPU)/
6libs-y += arch/m68k/lib/
Masahiro Yamadaaa633872015-03-27 17:01:13 +09007
8cpuflags-$(CONFIG_M5208) := -mcpu=5208
9cpuflags-$(CONFIG_M5235) := -mcpu=5235 -fPIC
10cpuflags-$(CONFIG_M52277) := -mcpu=52277 -fPIC
11cpuflags-$(CONFIG_M5249) := -mcpu=5249
12cpuflags-$(CONFIG_M5253) := -mcpu=5253
13cpuflags-$(CONFIG_M5271) := -mcpu=5271
14cpuflags-$(CONFIG_M5272) := -mcpu=5272
15cpuflags-$(CONFIG_M5275) := -mcpu=5275
16cpuflags-$(CONFIG_M5282) := -mcpu=5282
17cpuflags-$(CONFIG_M5307) := -mcpu=5307
18cpuflags-$(CONFIG_MCF5301x) := -mcpu=53015 -fPIC
19cpuflags-$(CONFIG_MCF532x) := -mcpu=5329 -fPIC
20cpuflags-$(CONFIG_MCF5441x) := -mcpu=54418 -fPIC
Masahiro Yamadaaa633872015-03-27 17:01:13 +090021
22PLATFORM_CPPFLAGS += $(cpuflags-y)
23
24
25ldflags-$(CONFIG_MCF5441x) := --got=single
Masahiro Yamadaaa633872015-03-27 17:01:13 +090026
27ifneq (,$(findstring -linux-,$(shell $(CC) --version)))
28ifneq (,$(findstring GOT,$(shell $(LD) --help)))
Tom Rini587e4a42020-03-27 11:46:27 -040029KBUILD_LDFLAGS += $(ldflags-y)
Masahiro Yamadaaa633872015-03-27 17:01:13 +090030endif
31endif