blob: 4a7960bbeb44cb727b1ede02ffdd2dadefad3a79 [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
Masahiro Yamadaaa633872015-03-27 17:01:13 +090010cpuflags-$(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
Masahiro Yamadaaa633872015-03-27 17:01:13 +090020
21PLATFORM_CPPFLAGS += $(cpuflags-y)
22
23
24ldflags-$(CONFIG_MCF5441x) := --got=single
Masahiro Yamadaaa633872015-03-27 17:01:13 +090025
26ifneq (,$(findstring -linux-,$(shell $(CC) --version)))
27ifneq (,$(findstring GOT,$(shell $(LD) --help)))
Tom Rini587e4a42020-03-27 11:46:27 -040028KBUILD_LDFLAGS += $(ldflags-y)
Masahiro Yamadaaa633872015-03-27 17:01:13 +090029endif
30endif